* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

:root{
	--primary: #508;
	--secondary: #cae;
	--caption: #fff;
}

code{
	background-color: #223;
	display: flex;
	flex-direction: row;
	color: #fff;
	width: 80%;
	font-size: 20px;
	padding: 10px;
	margin: 5px auto;
	margin-top: 15px;
	border-radius: 10px;
	align-items: center;
	justify-content: space-between;
	border-style: solid;
	border-color: #999;
	border-width: 1px;
	
}

code a{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 72%;
}

code span{
	font-family: "Poppins", sans-serif;
}

body{
	font-family: "Poppins", sans-serif;
}

header{
	top: 0;
	left: 0;
	z-index: 100;
	background-color: #111d;
	position: fixed;
	width: 100vw;
	height: 60px;
	box-shadow: 0px 10px 18px #0004;
	display: flex;
	flex-direction: row;
	align-items: center;
	 backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

header h1{
	display: flex;
	flex-direction: row;
	align-items: center;
	vertical-align: middle;
	height: 60px;
}

.iheader{
	width: 100%;
	max-width: 140vh;
	min-width: 50vw;
	align-items: center;
	vertical-align: middle;
	margin: 0 auto;
	color: #fff;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.ilogo{
	color: #000;
}

nav{
	display: flex;
	flex-direction: row;
	height: 60px;
	align-items: center;
	vertical-align: middle;
}

nav a{
	color: #888;
	display: flex;
	flex-direction: row;
	align-items: center;
	vertical-align: middle;
	height: fit-content;
	margin: 0 25px;
}

nav a:hover{
	text-decoration: underline;
}

main{
	padding-top: 80px;
	width: 100%;
	max-width: 140vh;
	min-width: 50vw;
	margin: 0 auto;
	color: #000;
	display: flex;
	flex-direction: column;
}

main p {
	text-align: justify;
}

hr{
	margin: 25px 0;
	width: 100%;
	outline-style: none;
	border-style: none;
	border-top-style: solid;
	border-width: 1px;
	border-color: #888;
}