*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #f2efe9;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0d1520;
  background-image: url("/assets/local/Background.jpg");
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.spacer {
  flex: 1 1 52%;
  min-height: 42vh;
}

main {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem clamp(2.5rem, 8vh, 5rem);
  text-align: center;
}

.logo {
  width: min(420px, 85vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 24px rgba(0, 0, 0, 0.5));
}

.coming-soon {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(242, 239, 233, 0.7);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

.product-link {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(242, 239, 233, 0.55);
}

.product-link:hover {
  color: rgba(242, 239, 233, 0.92);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 600px) {
  .page {
    background-position: center 30%;
    background-attachment: scroll;
  }

  .spacer {
    flex-basis: 48%;
    min-height: 38vh;
  }
}

@media (min-aspect-ratio: 16/9) {
  .page {
    background-position: center 40%;
  }

  .spacer {
    flex-basis: 55%;
    min-height: 46vh;
  }
}
