html, body{
    width: 100%;
    height:100%;
	font-family: sans-serif;
	padding: 70px 20px 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 a:hover{
	background-color: #000000;
	transition: 1s;
}
/* MAIN */
main{
    width: 80%;
    height: 80%;
    margin: 0 auto;
}
.text{
    text-align: justify;
    margin-left: 4%;
    font-family: 'Rubik', sans-serif;
    position: fixed;
}
.text p{
    font-size: 18px;
    line-height: 150%;

}
.contenedor{
    width: 60%;
	margin: auto;
	padding: 40px 0;
    display: flex;
    
}
.contenedorObj{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr ;
	margin-left: 16%;
    gap: 20px;
}
.obj{
    border-radius: 10px;
	min-height: 200px;
	font-weight: bold;
	padding: 20px;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
    font-family: 'Rubik', sans-serif;
    color: white;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.31);
    transition: all .4s ease-in-out;
}
.obj .texto{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-shadow: 4px 4px 2px rgb(0, 0, 0);
    
}
 .obj div:hover {
     color: whitesmoke;
	transform: scale(1.2);
    color: white;
    background-color: #30303035;
    border-radius: 5px;
  }

a{
    text-decoration: none;
    color: white;
}