a {
  text-decoration: none
 } 

html {
	font-size: 9px;
}
.green-btn {
	width: 80%;
	justify-content: center;
	background: #23c870;
	color: var(--brand);
	padding: 18px 30px;
	border-radius: 15px;
	font-size: 17px;
	font-weight: 420;
	text-decoration: none;
	display: flex;
	align-items: center;
}

.green-btn:active {
	background: #23c880;
	color: var(--brand);
}

body {
	background: #202746;
	font-family: 'Calibri', sans-serif;
	font-size: 17px;
	font-weight: 420;
	line-height: 1.58;
	color: white;
	font-size: 1.6rem;
}

button {
	border: none;
	transition: all 0.25s;
}

#menu-toggle {
  opacity: 0;
}

.menu-btn {
  display: flex;
  align-items: center;
  position: fixed;
  top: 20px;
  left: 20px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 5;
}

.menu-btn > span,
.menu-btn > span::before,
.menu-btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
}
.menu-btn > span::before {
  content: '';
  top: -8px;
  z-index: 5;
}
.menu-btn > span::after {
  content: '';
  top: 8px;
  z-index: 5;
}

.menu-box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100%;
  margin: 0;
  padding: 60px 0;
  list-style: none;
  text-align: left;
	 font-size: 17px;
	 font-weight: 420;
  background-color: #070f37;
  box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
  z-index: 4;
}

.menu-item {
  display: block;
  padding: 12px 24px;
  color: white;
	 font-size: 17px;
	 font-weight: 420;
  text-decoration: none;
  z-index: 4;
}
.menu-item:hover {
  background-color: #070f37;
}

#menu-toggle:checked ~ .menu-btn > span {
  transform: rotate(45deg);
}
#menu-toggle:checked ~ .menu-btn > span::before {
  top: 0;
  transform: rotate(0);
}
#menu-toggle:checked ~ .menu-btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu-toggle:checked ~ .menu-box {
  visibility: visible;
  left: 0;
}

.menu-btn > span,
.menu-btn > span::before,
.menu-btn > span::after {
  transition-duration: .25s;
}
.menu-box {
  transition-duration: .25s;
}
.menu-item {
  transition-duration: .25s;
}
