:root {
  --bg: #ffffff;
  --fg: #0a0a0a;
  --font: "Unbounded", system-ui, sans-serif;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

.mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  padding: 2rem;
}

.mark img {
  width: clamp(120px, 28vw, 220px);
  height: auto;
  display: block;
}

.mark h1 {
  margin: 0;
  font-size: clamp(1.75rem, 6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: no-preference) {
  .mark {
    animation: in 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

@keyframes in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
