@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('montserrat.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem 4.5rem;
  -webkit-user-select: none;
  user-select: none;
  font-family: Montserrat, sans-serif;
  background-color: #000;
  color: #d1cfcc;
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, #d1cfcc22 0, #0000 35%),
    radial-gradient(circle at 85% 80%, #d1cfcc22 0, #0000 40%);
  pointer-events: none;
}

.centered {
  width: min(760px, 92vw);
  text-align: center;
  z-index: 1;
  padding: 2.75rem 1.5rem;
  border: 1px solid #d1cfcc55;
  border-radius: 20px;
  background: #000000cc;
  box-shadow: 0 0 0 1px #000, 0 12px 40px #000;
}

h1 {
  margin: 0;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  letter-spacing: 0.12em;
  line-height: 1.2;
}

img {
  margin: 1.25rem 0;
  width: clamp(80px, 14vw, 120px);
  height: auto;
  filter: grayscale(1) contrast(1.1);
}

h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 600;
}

a {
  color: #d1cfcc;
  text-decoration: none;
  border-bottom: 1px dashed #d1cfcc88;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  opacity: 0.85;
  border-bottom-color: #d1cfcc;
}

#information {
  margin: 1.1rem auto 0;
  max-width: 60ch;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: #d1cfcccc;
}

.blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  z-index: 999;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1.5s;
}

footer {
  position: fixed;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: #d1cfcc99;
}