.butterfly{
 height: 100px;
 width: 100px;
}
html {
	color: black;
	font-family: monospace;
	margin: 20px;
}

/* Menu Burger */
#menu__toggle {
	opacity: 0;
}
#menu__toggle:checked + .menu__btn > span {
	transform: rotate(45deg);
  background-color: white;
}
#menu__toggle:checked + .menu__btn > span::before {
	top: 0;
	transform: rotate(0deg);
  background-color: white;
}
#menu__toggle:checked + .menu__btn > span::after {
	top: 0;
	transform: rotate(90deg);
  background-color: white;
}
#menu__toggle:checked ~ .menu__box {
	left: 0 !important;
}
.menu__btn {
	position: fixed;
	width: 25px;
	height: 25px;
	cursor: pointer;
	z-index: 1;
	left: 25px;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: black;
	transition-duration: .25s;
}
.menu__btn > span::before {
	content: '';
	top: -8px;
}
.menu__btn > span::after {
	content: '';
	top: 8px;
}
.menu__box {
	display: block;
	position: absolute;
	top: 0px;
	left: -100%;
	width: 250px;
	height: 100%;
	margin: 0;
	padding: 80px 0;
	list-style: none;
	background-color: black;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
	transition-duration: .25s;
}
.menu__item {
	display: block;
	padding: 12px 50px;
	color: white;
	font-family: monospace;
	font-size: 20px;
	font-weight: 600;
	text-decoration: none;
	transition-duration: .25s;
}
.menu__item:hover {
	background-color: gray;
}
/* Fin Menu Burger */
/* Clock */
footer{
	height: 60px;
	font-size: 15px;
	display: flex;
	justify-content: space-around;
}
/* Fin Clock */
.header {
  display:flex;
	align-items: center;
	justify-content: center;
}
.title{
	display: flex;
	width: 700px;
	justify-content: center;
	text-decoration: underline;
	text-underline-position: under;
	text-decoration-color: black;
}
.menu__btn{
	top: 53px;
}
h1{

  position: relative; top:15px;
}
