html, body{
    width: 100%;
    height:100%;
	padding: 20px 1px 0;
    background-color: #E6E8E6;
}
*{
    margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/* MENU */
.header{
	background-color: #303030;
	height: 80px;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	font-family: 'Rubik', sans-serif;
}
.nav{
	display: flex;
	justify-content: space-between;
	max-width: 992px;

	margin: 0 auto;
}
.nav-link{
	color: white;
	text-decoration: none;
}
.logo{
	font-size: 20px;
	font-weight: bold;
	padding: 0 40px;
	line-height: 80px;
}
.nav-menu{
	display: flex;
	margin-right: 40px;
	list-style:none;
}
.nav-item{
	font-size: 20px;
	margin: 0 10px;
	line-height: 80px;
	text-transform: uppercase;
	width: max-content;
	font-family: 'Rubik', sans-serif;
}
.nav-menu-link{
	padding: 8px 12px;
	border-radius: 5px;
}
.nav-menu-link:hover{
	background-color: #000000;
	transition: 1s;
}

/* MAIN */
main{
	width: 80%;
	margin: auto;
	display: block;
}
.contenido{
	
	width: 50%;
	margin: auto ;
	display: block;
	margin-top:3%;
}
.titulo{
	font-family: 'Courier New', Courier, monospace;
	text-align: center;
}
img{
	margin: auto;
	display: block;
	width: 575px;
	height: 300px;
}
.tex{
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 20px;
	text-align: justify;
	color: black;
}

	
