:root {
  color-scheme: dark;
  --bg: #050505;
  --text: #e6e6e6;
  --accent: #ff0000;
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Monaspace Neon';
  src: url('fonts/MonaspaceNeon-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


body {
  height: 100%;
  color: var(--text);
  background-color: var(--bg);
  font-family: "Monaspace Neon", ui-monospace;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
}

h1 {
  margin: 0px;
  padding-left: 12px;
  user-select: none;
}

.logo {
  width: 48px !important;
  height: 48px !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 24px 0;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
}

.headline {
  margin: 0;
  font-size: clamp(36px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.prompt {
  color: var(--accent);
  margin-right: 12px;
  max-height: 120;
}

.soon {
  color: var(--accent);
}

.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 0;
}

.email {
  color: var(--accent);
  text-decoration: none;
  padding-bottom: 2px;
}

.email:hover,
.email:focus {
  color: #ffffff;
  outline: none;
}
