*{
	margin:0;
	padding: 0;
}

body{
	font-size: 24px;
	font-family:'Oswald', sans-serif;
	background-color:#e1e6b4;
}


a{
	text-decoration: none;
	color: white;
  }
  .main-grid {
	display: grid;
}
.logo{
	height: 150%;	
}
.toggleNav{
	text-decoration: none;
	font-size: 40px;
	font-weight: 300;
	color: white;
	display: none;
	justify-content: flex-end;
	margin: 15px 15px;
}

header{
	background-size: cover;
	box-shadow: inset 0 0 0 1900px #afc65b;
	height: 22,5vh;
	color:#C0C0C0;
	top: 0;
	width: 100%;
	position: fixed;
	z-index: 1;
}
nav{
	height: 100px;
	display: flex;
	justify-content: space-between;
	padding: 20px 50px;
	align-items: center;
	border-bottom: 1px solid   rgba(0,0,0,0.7); 
}

.menu{
	display: flex;
	list-style: none;
	flex-wrap: wrap;
	gap:10px;
}
.menu li{
	padding: 1em 2em;
}

.menu li a{
	color:#3f4a34;
	text-decoration: none;
}

.menu li a:hover{
	color: white;
	transition: 0.9s;
	border-bottom: dashed 1px white;
	border-top: dashed 1px white;
}
.main_menu ul{
    list-style: none; 
 }
.container{
	display: grid;
	grid-template-columns:repeat(4, 3fr);
	grid-gap: 10px;
	margin-top: 200px; 
	margin-left: 10px;
}
.foto{
	border:6px solid rgba(0,0,0,0.4);
	border-radius: 6px;
	width: 80%;
	height: 80%;
	z-index: 0;
	display: grid;
}
.foto:hover{
	transition: 0.4s;
	transform: scale(1.15);
}

.nm{
	margin-top: 60px;
}
.social a{
    margin: 50px;
    display: grid; 
}
footer{
	width:100% ;
	height:100%;
	color: white;
	display: flex;
	grid-template-columns:repeat(2,3fr);
	justify-content: space-around; 
	background:rgba(0,0,0,0.7);

}
@media screen and (max-device-width: 1440px){

}
@media screen and (max-device-width: 1280px){
	.container{
		padding: 20px 5%;
	}

}
@media screen and (max-device-width: 1024px){
	.menu{
        gap:5px;
	}
	.menu li{
	padding: 0.2em 0.4em;
}

}
@media screen and (max-device-width: 768px){
     .toggleNav{
     	display: flex;
     }
     .main_menu ul{
     	display: none;
     	margin: 0;
     }
     .main_menu ul.open{
     	display: flex;
     	flex-direction: column;
     	align-items: center;
     }
     .container{
     	margin: 0 8%;
     	margin-top: 150px;
     }
     .logo{
		height: 80px;
	}
	body{
		font-size: 20px
	}
	.menu li{
	padding: 0.1em 0.2em;
}
.container{
	display: grid;
	grid-template-columns:repeat(2, 3fr);
	
}

}
@media screen and (max-device-width: 480px){
	.container{
		margin-top: 150px;
	}
	body{
		font-size: 15px
	}
	.logo{
		height: 80px;
	}
	.menu li{
	padding: 0.1em 0.2em;
}

}
@media screen and (max-device-width: 320px){
  body{
		font-size: 13px;
	}
}
 

