:root {
  --acid: #d8ff36;
  --pink: #ff5daf;
  --blue: #3758ff;
  --ink: #11110f;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--sans);
}

::selection {
  background: var(--pink);
}

.hero {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: clamp(24px, 6vw, 80px);
}

.hero > div {
  width: min(1120px, 100%);
}

h1 {
  margin: 0;
  font-size: clamp(4.4rem, 12vw, 11rem);
  font-weight: 1000;
  line-height: 0.82;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

h1 span {
  display: inline-block;
  padding: 0.04em 0.09em 0.08em 0.05em;
  transform: rotate(-2deg);
  background: var(--pink);
  box-shadow: 0.07em 0.07em 0 var(--ink);
}

p {
  margin: clamp(42px, 7vh, 72px) 0 0;
  font-size: clamp(1.75rem, 4.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

em {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: white;
  font-style: italic;
}

em::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -0.06em -0.15em;
  transform: rotate(2deg);
  background: var(--blue);
}

@media (max-width: 600px) {
  .hero {
    place-items: start center;
    padding: 18vh 18px 48px;
  }

  h1 {
    font-size: clamp(4rem, 21vw, 7rem);
  }

  p {
    font-size: clamp(1.7rem, 8vw, 2.6rem);
  }
}
