@font-face {
  font-family: "Anybody";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/anybody-800.woff2") format("woff2");
}

@font-face {
  font-family: "Archivo Narrow";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/archivo-narrow-700.woff2") format("woff2");
}

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/archivo-400.woff2") format("woff2");
}

:root {
  --w12-black: #0A0A0B;
  --w12-white: #FFFFFF;
  --w12-yellow: #FFE500;
  --w12-grey: #8C8C93;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--w12-black);
  color: var(--w12-white);
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
}

main {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px 20px;
  text-align: center;
}

.logo {
  display: block;
  width: 100%;
  max-width: clamp(280px, 60vw, 720px);
  height: auto;
}

.message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.headline {
  margin: 0;
  font-family: "Anybody", "Arial Black", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  font-size: clamp(24px, 5vw, 40px);
}

.subline {
  margin: 0;
  font-family: "Archivo Narrow", "Arial Narrow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(14px, 2.2vw, 18px);
  color: var(--w12-grey);
}

.subline .accent {
  color: var(--w12-yellow);
}

@media (min-width: 1280px) {
  main {
    gap: 40px;
    padding: 80px;
  }
}
