* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: white;
  background:
    linear-gradient(120deg, rgba(2, 6, 23, 0.72), rgba(15, 23, 42, 0.25)),
    url("background.svg");
  background-size: cover;
  background-position: center;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.card {
  width: min(900px, 100%);
  padding: 78px 42px;
  text-align: center;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(3, 7, 18, .46);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 45px 140px rgba(0,0,0,.58);
}

.label {
  margin-bottom: 24px;
  color: #d8c18b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 12vw, 142px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.065em;
  text-shadow: 0 22px 65px rgba(0,0,0,.42);
}

.line {
  width: 120px;
  height: 1px;
  margin: 38px auto 30px;
  background: linear-gradient(to right, transparent, white, transparent);
}

p {
  margin: 0 0 14px;
  color: #dbeafe;
  font-size: 18px;
}

a {
  color: white;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.78);
  padding-bottom: 5px;
}

@media (max-width: 540px) {
  .card {
    padding: 56px 24px;
    border-radius: 28px;
  }

  .label {
    letter-spacing: 3px;
  }
}
