:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  background: #f2f0ea;
  color: #11110f;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
}

main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100svh;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

h1 {
  align-self: flex-end;
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

span {
  width: 0.5rem;
  height: 0.5rem;
  align-self: flex-start;
  border-radius: 50%;
  background: currentColor;
}

@media (prefers-color-scheme: dark) {
  :root {
    background: #11110f;
    color: #f2f0ea;
  }
}
