@charset "utf-8";
/* CSS Document */
main {
	/*background: #87cc77;*/
	/*margin: 0;*/
	/*width: 100vw;
	height: 100vh;
	animation: bugfix infinite 1s;
	-webkit-animation: bugfix infinite 1s;*/
}

@keyframes bugfix {
  from {
	  padding: 0;
  }
  to {
	  padding: 0;
  }
}
@-webkit-keyframes bugfix {
  from {
	  padding: 0;
  }
  to {
	  padding: 0;
  }
}
#overlay-button {
	position: absolute;
	left: 10px;
	top: 10px;
	padding: 26px 11px;
	z-index: 5;
	cursor: pointer;
	user-select: none;
}
#overlay-button span {
	height: 4px;
	width: 35px;
	border-radius: 2px;
	background-color: #555;
	position: relative;
	display: block;
	transition: all .2s ease-in-out;
}
#overlay-button span:before {
	top: -10px;
	visibility: visible;
}
#overlay-button span:after {
	top: 10px;
}
#overlay-button span:before, #overlay-button span:after {
	height: 4px;
	width: 35px;
	border-radius: 2px;
	background-color: #555;
	position: absolute;
	content: "";
	transition: all .2s ease-in-out;
}
#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
	background: #555;
}

input[type=checkbox] {
	display: none; 
  
}

input[type=checkbox]:checked ~ #overlay {
	visibility: visible;
	top: 80px;
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
	background: transparent;
  
  
}
input[type=checkbox]:checked ~ #overlay-button span:before {
	transform: rotate(45deg) translate(7px, 7px);

}
input[type=checkbox]:checked ~ #overlay-button span:after {
	transform: rotate(-45deg) translate(7px, -7px);


}

#overlay {
	height: 100vh;
	width: 100vw;
	/*background: #f9f5f2;*/
	background: #72c7cc;
	z-index: 2;
	visibility: hidden;
	position: fixed;
}
#overlay.active {

}
#overlay ul {
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: left;
	margin: 50px auto;
	padding: 20px;
	list-style-type: none;
}
#overlay ul li {
	padding: 10px 0;
}
#overlay ul li a {
	/*color: #72c7cc;*/
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	font-weight: bold;
	text-align: left;
}
#overlay ul li a:hover {
	color: #000!important;
}