/* Create a dark mode that responds to the system's setting */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #333;
    color: #fff;
  }
}

span {
  white-space: pre;
  font-size: ex-large;
}

br {
  width: 5px;
}

div {
  white-space: pre;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px;
  /* Wrap when elements reach the end of the page */
  flex-wrap: wrap;
}

button {
  padding: 10px;
  margin: 10px;
  font-size: 16px;
}

body {
  font-family: monospace;
}