*{
	margin:0;
	padding: 0;
}

body{
	font-size: 24px;
	font-family:'Oswald', sans-serif;
	background-color:#e4dce1;
}


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#a09db5;
	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:#744687;
	text-decoration: none;
}

.menu li a:hover{
	color: white;
	transition: 0.9s;
	border-bottom: dashed 1px  white;
	border-top: dashed 1px  white;
}
/*ul{
    list-style: none; 
 }*/
 @media screen and (max-device-width: 1440px){

}

@media screen and (max-device-width: 1280px){
	.menu li{
		padding: 0.5em 1em;
		font-size: 20px;
	}
	.logo{
		height: 100px;
	}

}

@media screen and (max-device-width: 1024px){
	.menu{
        gap:5px;
	}
	.menu li{
	padding: 0.4em 0.8em;
	font-size: 20px;
    }
}
@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;
     }
     
     .logo{
		height: 80px;
	}
	body{
		font-size: 20px
	}
	.menu li{
	    padding: 0.1em 0.2em;
    }
}

@media screen and (max-device-width: 480px){
	body{
		font-size: 25px
	}
	.logo{
		height: 80px;
	}
	.menu li{
	    padding: 0.1em 0.2em;
    }
   
    footer{
    	font-size: 15px;
    }

}


@media screen and (max-device-width: 320px){
  body{
		font-size: 15px;
	}
	footer{
    	font-size: 10px;
    }

	
}
 