* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
}

@font-face {
  font-family: Maax;
  src: url("Maax.woff") format("woff");
}
html,
body {
  width: 100%;
  height: 100%;
  font-family: Maax, sans-serif;
}
html body,
body body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  text-align: center;
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  background: radial-gradient(80.41% 100% at 50% 0%, rgba(206, 206, 206, 0.1) 0%, rgba(0, 0, 0, 0) 90%), #222;
}
html h1,
body h1 {
  color: rgba(153, 153, 153, 0);
  -webkit-background-clip: text;
          background-clip: text;
  background-image: radial-gradient(104.41% 100% at 50% 0%, rgb(231, 231, 231) 0%, rgba(153, 153, 153, 0.3) 100%);
  text-shadow: 0px 10px 40px rgba(0, 0, 0, 0.4);
  font-family: Maax;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 5px;
  line-height: normal;
}
html p,
body p {
  text-align: center;
  color: rgba(255, 255, 255, 0);
  -webkit-background-clip: text;
          background-clip: text;
  background-image: radial-gradient(104.41% 100% at 50% 0%, rgba(231, 231, 231, 0.8) 0%, rgba(181, 181, 181, 0.4) 100%);
  text-align: center;
  text-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 700px;
}
html .button-outer,
body .button-outer {
  display: flex;
  padding: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(126, 126, 126, 0.1);
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.5);
  position: relative;
}
html .button-outer .button-inner,
body .button-outer .button-inner {
  position: relative;
  display: flex;
  width: 500px;
  height: 70px;
  padding: 8px 24px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(100% 100% at 50% 0%, rgba(236, 236, 236, 0.1) 0%, rgba(233, 233, 233, 0) 100%), rgba(209, 209, 209, 0.1);
  font-size: 22px;
  outline: none;
}
html .top-glow,
body .top-glow {
  background: radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  height: 2px;
  position: absolute;
  top: -2px;
  z-index: 100;
  width: 90%;
}
html .top-glow.glow-2,
body .top-glow.glow-2 {
  top: 6px;
  z-index: 10000;
}
html .noise,
body .noise {
  width: 100%;
  height: 100%;
  background-image: url("noise.png");
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.5;
  pointer-events: none;
}
html .text,
body .text {
  z-index: 10;
  width: 600px;
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.2);
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

@media (max-width: 800px) {
  html body,
  body body {
    gap: 20px;
  }
  html h1,
  body h1 {
    font-size: 32px;
    font-weight: 500;
  }
  html p,
  body p {
    font-size: 16px;
    font-weight: 300;
    max-width: calc(100% - 20px);
  }
  html .button-outer,
  body .button-outer {
    border-radius: 24px;
  }
  html .button-outer .button-inner,
  body .button-outer .button-inner {
    width: 350px;
    height: 60px;
    padding: 6px 18px;
    gap: 10px;
    border-radius: 18px;
    font-size: 18px;
  }
  html .text,
  body .text {
    right: unset;
    bottom: 10px;
    text-align: center;
    font-size: 10px;
    max-width: calc(100% - 20px);
  }
}/*# sourceMappingURL=style.css.map */