@font-face {
  font-family: "Gelasio";
  src: url("./fonts/Gelasio-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  background: #000;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  margin: 0;
  overflow-x: hidden;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.landing {
  width: 100%;
  padding: 2rem;
  text-align: center;
}

h1 {
  margin: 0;
  font-family: "Gelasio", Georgia, serif;
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

a {
  border: 0;
  padding: 0;
  color: #fff;
  background: none;
  font-size: 0.625rem;
  line-height: 1;
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 150ms ease;
}

a:hover {
  opacity: 1;
}

a:focus-visible {
  outline: 1px solid #fff;
  outline-offset: 4px;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  a {
    transition: none;
  }
}
