:root {
  --bg: #0b0d10;
  --fg: #ffffff;
  --muted: rgba(255, 255, 255, 0.6);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

img {
  width: 120px;
  height: auto;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.soon {
  margin-top: 12px;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

footer {
  text-align: center;
  padding: 16px;
  font-size: 0.85rem;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@font-face {
  font-family: "Exo 2";
  src: url("Exo2-MediumItalic.woff2") format("woff2");
}

h1 {
  font-family: "Exo 2", system-ui, sans-serif;
  font-weight: 500;
  font-style: italic;
}