:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  text-align: center;
  padding: 1.5rem;
}

main {
  max-width: 40rem;
  line-height: 1.5;
}

p {
  margin: 0;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
}

.site-logo {
  max-width: 220px;
  width: 40vw;
  height: auto;
  margin-bottom: 1.25rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

header {
  margin-bottom: 1rem;
}
