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

:root {
  --bg: #000000;
  --credit: #8a827c;
  --credit-hover: #c8b8a8;
}

html,
body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--credit);
  font-family: "Outfit", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.stage {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 2.5rem 1.5rem;
}

.mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  animation: rise 1.4s ease-out both;
}

.mark__logo {
  display: block;
  width: min(42vw, 420px);
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.credit {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: lowercase;
  color: var(--credit);
}

.credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.credit a:hover,
.credit a:focus-visible {
  color: var(--credit-hover);
  border-bottom-color: currentColor;
  outline: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .mark {
    gap: 1.35rem;
  }

  .mark__logo {
    width: min(78vw, 320px);
  }

  .credit {
    font-size: 0.64rem;
    letter-spacing: 0.22em;
  }
}
