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

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background: #fff;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  letter-spacing: 0.02em;
  text-align: center;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.headline {
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 200;
}

.headline .w100 {
  font-weight: 100;
}

.headline .muted {
  color: #999;
}

footer {
  padding: 1.5rem 1rem;
  font-size: clamp(0.75rem, 2.5vw, 0.95rem);
  line-height: 1.6;
}

footer a {
  color: inherit;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
