:root {
  --accent: #e1308b;
  --paper: #fffafc;
  --ink: #2d2028;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 34%, rgb(225 48 139 / 8%), transparent 34rem),
    var(--paper);
  font-family: "Poppins", system-ui, sans-serif;
  text-rendering: optimizeLegibility;
}

main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 8vw, 6rem) 1.5rem;
}

.message {
  width: min(100%, 46rem);
  text-align: center;
}

.brand {
  margin: 0 0 clamp(2.5rem, 7vw, 4.5rem);
  color: var(--ink);
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand span {
  color: var(--accent);
}

h1 {
  max-width: 42rem;
  margin: 0 auto 1.15rem;
  color: var(--accent);
  font-size: clamp(2rem, 5.2vw, 3.85rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

p {
  margin: 0 auto;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.75;
}

.divider {
  width: 3.25rem;
  height: 2px;
  margin: clamp(2.25rem, 6vw, 3.5rem) auto;
  background: var(--accent);
}

.contact {
  max-width: 39rem;
  margin-top: 0.85rem;
}

a {
  color: var(--accent);
  font-weight: 500;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover,
a:focus-visible {
  text-decoration-thickness: 2px;
}

a:focus-visible {
  outline: 3px solid rgb(225 48 139 / 25%);
  outline-offset: 4px;
  border-radius: 0.15rem;
}

@media (max-width: 32rem) {
  main {
    place-items: start center;
    padding-top: 14vh;
  }

  .brand {
    margin-bottom: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
