*{
	margin:0;
	padding: 0;
}

body{
	font-size: 24px;
	font-family:'Oswald', sans-serif;
	background-color: #D8BFD8;
}

a{
	text-decoration: none;
	color: white;
  }
  .main-grid {
	display: grid;
}
.logo{
	height: 150%;	
}

header{
	background-size: cover;
	box-shadow: inset 0 0 0 1900px #dab7d0;
	height: 22,5vh;
	color:#C0C0C0;
	top: 0;
	width: 100%;
	position: fixed;
}
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); 
}
.toggleNav{
	text-decoration: none;
	font-size: 40px;
	font-weight: 300;
	color: white;
	display: none;
	justify-content: flex-end;
	margin: 15px 15px;
}

.menu{
	display: flex;
	list-style: none;
}
.menu li{
	padding: 1em 2em;
}

.menu li a{
	color:white;
	text-decoration: none;
}

.menu li a:hover{
	color: #4f3e38;
	transition: 0.9s;
	border-bottom: dashed 1px #4f3e38;
	border-top: dashed 1px #4f3e38;
}
table{
	border: 1px black solid;
	margin-top: 150px;
	width: 100%;
	font-family:'Oswald', sans-serif;
}
td{
	border: 1px black solid;
	text-align: center;
	width: 100px;
}
.uroki{
	height: 150px;
}
.content{
	margin: 30px;
}
td:hover{
	background-color: rgba(0,0,0,0.6);
	transition: 0.5s;
	color: white;
}
footer{
	width:100% ;
	height:100%;
	background-color:rgba(0,0,0,0.7);
	display: flex;
	grid-template-columns:repeat(2,3fr);
	justify-content: space-around; 
	margin-top: 30px;
	color: white;
}
.social a{
    margin: 50px;
    display: grid; 
}
.nm{
	margin-top: 60px;
}


@media screen and (max-device-width: 1440px){


}
@media screen and (max-device-width: 1280px){

}
@media screen and (max-device-width: 1024px){
	.menu li{
		padding: 0.5em 1em;
	}
}
@media screen and (max-device-width: 768px){
	.toggleNav{
		display: flex;
	}
	.main_menu ul{
		display: none;
		margin: 0;
		font-size: 15px;
	}
	.main_menu ul.open{
		display: flex;
		flex-direction: column;
		align-items: center;
		grid-column:1 / -1;
	}
	.menu .open{
		display: grid;
		grid-template-columns: 1fr 1fr;
		font-size: 10px;
	}
}
@media screen and (max-device-width: 480px){

}
@media screen and (max-device-width: 320px){

}