@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

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

body,
html {
  background: #10092c;
  padding: 0;
  margin: 0;
  overscroll-behavior: none;
  font-family: "Inter";
}

.header {
  padding: 4em;
  opacity: 0.75;
}

.header h1 {
  width: 60%;
  background: #cfcfcf;
  background: linear-gradient(to top, #cecece 0%, #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  font-size: 80px;
  letter-spacing: -0.05em;
  line-height: 1;
}

button {
  margin: 3em 0;
  padding: 1em 1.5em;
  color: #fff;
  font-size: 16px;
  border: 1px solid rgba(149, 99, 255, 0.5);
  outline: none;
  border-radius: 0.75em;
  backdrop-filter: blur(20px);
  cursor: pointer;
  background: linear-gradient(
      180deg,
      rgba(60, 8, 126, 0) 0%,
      rgba(60, 8, 126, 0.32) 100%
    ),
    rgba(113, 47, 255, 0.12);
  box-shadow: inset 0 0 12px #bf97ff3d;
}

.glassy-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(50px);
  pointer-events: none;
}

.container {
  position: absolute;
  top: 0;
  z-index: 10000;
}
