body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: x-large;
}

button {
  border-radius: 4px;
  color: black;
}

button:hover {
  color: white;
  background-color: rgb(194, 0, 129);
  cursor: pointer;
}

button > p {
  font-weight: bold;
  margin: 6px;
}

html {
  min-width: 360;
}

li {
  margin: 4px;
}

#content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#sparkle-gif {
  max-width: 300px;
}

@media (prefers-color-scheme: dark) {
  body {
    background: darkblue;
    color: white;
  }
}

@media (prefers-color-scheme: light) {
  body {
    background: lightblue;
    color: rgb(48, 37, 46);
  }
}
