:root {
  color-scheme: dark;
  font-family:
    Arial,
    Helvetica,
    sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: #fff;
  background: linear-gradient(135deg, #4801ff, #7918f2 50%, #ac32e4);
}

main {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  text-align: center;
}

h1,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2.25rem, 8vw, 3.75rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

p {
  font-size: clamp(1.5rem, 5vw, 1.875rem);
  font-weight: 300;
  line-height: 1.25;
}
