:root {
  --canvas: #f9f5ef;
  --text: #151617;
  --text-muted: #908b86;
  --primary: #fdec04;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100dvh;
  margin: 0;
  color: var(--text);
  background: var(--canvas);
  font-family: sans-serif;
  -webkit-font-smoothing: antialiased;
}

.download-handoff {
  display: flex;
  min-height: 100dvh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 28px;
  text-align: center;
}

.download-animation {
  width: min(54vw, 224px);
  aspect-ratio: 1;
}

.download-animation svg {
  width: 100%;
  height: 100%;
}

noscript p {
  max-width: 320px;
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 20px;
}

noscript {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 16px;
}

noscript a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text);
  background: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
