body {
	line-height:120%;
	color: black;
}

a:hover.img {
	color: red;
	border-color: red;
	position:relative;top:1px;left:1px;
}

h1 { 
	padding: 5px;
}

h2 { 
	padding: 5px;
	background-color: aquamarine;
}

h3 { 
	padding: 5px;
	background-color: wheat;
	margin-left: 10px;
}

h4 {
	padding: 5px;
	background-color: rgb(255, 204, 255);
	margin-left: 20px;
}
.menu-btn {
	position: fixed;
	top: 10px;
	right: 10px;
	display: flex;
	height: 60px;
	width: 60px;
	justify-content: center;
	align-items: center;
	z-index: 90;
	background-color: #3584bb;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background-color: #ffffff;
	position: absolute;
}
.menu-btn span:before {
	bottom: 8px;
}
.menu-btn span:after {
	top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
	background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
}
#menu-btn-check {
	display: none;
}
.menu-content {
	padding: 20px;
	width: 100vmin;
	position: fixed;
	top: 0;
	left: 100%;
	z-index: 80;
	background-color: rgba(255,255,255,0.5);
	transition: all 0.2s;
}
#menu-btn-check:checked ~ .menu-content {
	left: 0;
}
.big {
	font-size: 150%;
	margin-bottom: 20px;
}
.wrapper {
	width: 100vmin;
	margin: 0 auto;
}
.depth1s {
	display: flex;
}
.depth1{
	width:20%;
	height: 60px;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	transition: all 0.2s;
	display: flex;
	list-style-type:none;
	background-color:#cccccc;
	position: relative;
}
.depth1:hover{
	background-color:#aaaaaa;
}
.depth2s {
	display: none;
	width: 100%;
	position: absolute;
	top: 60px;
	left: 0;
}
.depth1:hover .depth2s{
	display: block;
}
.depth2 {
	height: 60px;
	justify-content: center;
	align-items: center;
	display: flex;
	font-size: 16px;
	transition: all 0.2s;
	text-decoration: none;
	list-style-type:none;
	background-color:#8888cc;
}
.depth2:hover {
	background-color:#6666aa;
}