*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  background: #000000;
  color: #ffffff;
}

main {
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1 {
  color: transparent;
  font-size: clamp(2rem, 10vw, 4rem);
  line-height: 1.2;
  text-shadow: 0 0 8px rgba(255, 255, 255, 1);
  margin: 0;
  padding: 0 1rem;
}

@media (forced-colors: active) {
  h1 {
    color: CanvasText;
    text-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  h1 {
    color: #ffffff;
    text-shadow: none;
  }
}

.hl {
  color: #f0f0f0;
  font-size: clamp(3rem, 15vw, 6rem);
}
