:root {
  --font: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding:
    max(1.5rem, env(safe-area-inset-top))
    max(1.25rem, env(safe-area-inset-right))
    max(2rem, env(safe-area-inset-bottom))
    max(1.25rem, env(safe-area-inset-left));
  background: #000;
  color: #fff;
  font-family: var(--font);
}

main {
  width: min(100%, 40rem);
  display: grid;
  justify-items: center;
  gap: clamp(1rem, 3vw, 1.5rem);
}

h1 {
  margin: 0;
  font-size: clamp(1.85rem, 6.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-align: center;
}

.shot {
  width: min(100%, 36rem);
  height: auto;
}

.coa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-top: 0.15rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-decoration: none;
}

.coa:hover {
  background: #e7eef6;
}

.coa:focus-visible {
  outline: 3px solid #6eb3e7;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
