:root {
  --navy: #1b213d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  margin: 0;
  height: 100vh;
  height: 100dvh;
  background: var(--navy);
  color: var(--white);
  font-family: "Outfit", "Helvetica Neue", Arial, sans-serif;
  display: grid;
  place-items: center;
  -webkit-font-smoothing: antialiased;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(22px, 4.5vh, 40px);
  padding: 24px;
  text-align: center;
}

.logo {
  display: block;
  width: clamp(220px, 62vw, 540px);
  height: auto;
}

.copyright {
  margin: 0;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}
