body {
  background-color: #303030;
  color: white;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

@media (prefers-color-scheme: light) {
  body {
    background-color: #eaeaea;
    color: #303030;
  }
}

nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  padding: 0.5rem;
  display: flex;
  flex-direction: row;
  gap: 1em;
}
