body {
  background-color: #060918;
  filter: progid: DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#060918', endColorstr='#100B30');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0, #060918), color-stop(100%, #37118B));
  background-image: -webkit-linear-gradient(135deg, #060918, #37118B);
  background-image: -moz-linear-gradient(45deg, #060918, #37118B);
  background-image: -ms-linear-gradient(45deg, #060918 0, #37118B 100%);
  background-image: -o-linear-gradient(45deg, #060918, #37118B);
  background-image: linear-gradient(135deg, #060918, #37118B);
  text-align: center;
  margin: 0px;
  overflow: hidden;
}
* {
  box-sizing: border-box;
}
.shade {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgb(0 0 0 / 90%), rgb(0 0 0 / 0%));
}
button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.burger,
.menu {
  position: fixed;
}
.burger {
  z-index: 4;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  background-image: url("menu.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.open .burger {
  background-image: url("close.svg");
}
.background {
  position: fixed;
  z-index: 2;
  top: 44px;
  left: 44px;
  aspect-ratio: 1 / 1;
  translate: -50% -50%;
  height: 88px;
  background: rgb(0 0 0 / 0%);
  border-radius: 50%;
  transition: 0.6s;
}
.open .background {
  height: 300vmax;
  background: rgb(0 0 0 / 80%);
}
.menu {
  z-index: 3;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.05s;
}
.menu nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 100px;
}
.open .menu {
  opacity: 1;
  visibility: visible;
}
 .menu nav:hover > a {
  opacity: 0.25;
}
 .menu nav > a:hover {
  opacity: 1;
  translate: 8px 0;
}
.menu a {
  position: relative;
  color: #f9f9f9;
  font-size: 32px;
  font-family: 'Inter', sans-serif;
  padding: 20px 0 20px 20px;
  text-decoration: none;
  opacity: 0;
  cursor: pointer;
  transition: 0.4s;
}
.menu a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  translate: 0 -50%;
  margin-top: 2px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  opacity: 0;
  rotate: 45deg;
  transition: 0.3s;
}
.menu a:hover::after {
  opacity: 1;
}
@keyframes appear {
  0% {
    opacity: 0;
    translate: -30px 0;
  }
  100% {
    opacity: 1;
  }
}
.open .menu a {
  opacity: 1;
  animation: appear 0.25s backwards;
}
.heading {
  position: absolute;
  display: flex;
  flex-direction: column;
  text-align: start;
  margin-top: 100px;
  margin-left: 200px;
}
input {
  text-align: start;
  border: none;
  background-color: rgba(6, 9, 24, 0);
  color: #fff;
  font-size: 80px;
  font-family: 'Inter', sans-serif;
  padding: 10px;
  font-weight: bolder;
}
#btn1, #btn2, #btn3 {
  color: #fff;
  text-shadow: 0 0 20px #8987a8, 0 0 40px #37118B;
}
@media all and (max-width: 800px) {
  input {
    font-size: 40px;
  }
  .heading {
    margin-top: 120px;
    margin-left: 50px;
  }
  .menu-item {
    font-size: 15px;
  }
}