* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  background: #000;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px 24px;
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

main {
  width: 100%;
  max-width: 680px;
  text-align: center;
}

/* Frame only the logo in the supplied image, preserving its proportions. */
.logo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 768 / 368;
  margin: 0;
}

.logo img {
  position: absolute;
  width: 306.510417%;
  max-width: none;
  height: auto;
  left: -103.255208%;
  top: -87.5%;
}

.tagline {
  margin: 24px 0 36px;
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-style: italic;
  font-weight: 900;
  line-height: 1.3;
}

.links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 224px;
  min-height: 56px;
  padding: 16px;
  border: 1px solid #fff;
  background: #000;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.links a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 5px;
}

@media (hover: hover) and (pointer: fine) {
  .links a:hover {
    background: #fff;
    color: #000;
  }
}

@media (max-width: 520px) {
  .links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .links a {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-height: 500px) and (min-width: 521px) {
  body {
    padding: 24px;
  }

  main {
    max-width: min(680px, 100svh);
  }

  .tagline {
    margin: 12px 0 20px;
    font-size: 1.5rem;
  }
}
