:root {
  color-scheme: dark;
  --background: #000;
  --foreground: #fff;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: var(--background);
}

body {
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.brand {
  position: absolute;
  top: 13.2svh;
  left: 50%;
  width: min(630px, 76vw);
  transform: translateX(-50%);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  position: absolute;
  top: 41.4svh;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  transform: translateX(-50%);
}

.main-nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.42em;
  text-decoration: none;
  text-transform: lowercase;
}

.socials {
  position: absolute;
  left: 50%;
  bottom: max(42px, calc(env(safe-area-inset-bottom) + 27px));
  display: flex;
  align-items: center;
  gap: 27px;
  transform: translateX(-50%);
}

.socials a {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #fff;
  text-decoration: none;
}

.socials svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials .fill {
  fill: currentColor;
  stroke: none;
}

@media (min-width: 700px) {
  .brand {
    top: 9.5svh;
    width: min(640px, 44vw);
  }

  .main-nav {
    top: 40svh;
  }
}

@media (max-height: 700px) {
  .brand {
    top: 8svh;
    width: min(520px, 70vw);
  }

  .main-nav {
    top: 42svh;
  }

  .socials {
    bottom: 20px;
  }
}
