:root {
  --pink: #ff2f68;
  --blue: #1746f5;
  --green: #00ad6d;
  --yellow: #ffd21f;
  --ink: #101010;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: white;
  background: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

main {
  min-height: 100vh;
  background:
    conic-gradient(
      from -20deg,
      var(--pink) 0 12.5%,
      var(--yellow) 12.5% 25%,
      var(--blue) 25% 37.5%,
      var(--green) 37.5% 50%,
      var(--pink) 50% 62.5%,
      var(--yellow) 62.5% 75%,
      var(--blue) 75% 87.5%,
      var(--green) 87.5% 100%
    );
}

.hero {
  min-height: 38vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
  text-align: center;
}

.hero-content {
  max-width: 820px;
}

h1,
h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 black;
}

h1 {
  font-size: clamp(42px, 9vw, 86px);
  line-height: 0.95;
}

h2 {
  font-size: clamp(30px, 5vw, 52px);
}

h3 {
  margin: 28px 0 8px;
  color: var(--yellow);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

p {
  font-size: 18px;
  line-height: 1.5;
}

a {
  color: var(--yellow);
  font-weight: 800;
}

.tagline {
  display: inline-block;
  margin: 24px 0 0;
  padding: 12px 16px;
  color: white;
  background: var(--pink);
  border-radius: 6px;
  box-shadow: 6px 6px 0 black;
  font-weight: 900;
}

.panel {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 28px;
  background: black;
  border-radius: 8px;
}

.effective {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}
