:root {
  --red: #db3633;
  --green: #4caf50;
  --yellow: #e0bd1e;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Roboto", "Ubuntu", "Segoe UI", Tahoma, Geneva, Verdana,
    sans-serif;
  height: 100vh;
  width: 100vw;
  padding: 0;
  margin: 0;
  gap: 1rem;
}


.logo {
  max-width: 400px;
  width: 50%;
}

@media (prefers-color-scheme: dark) {
  /* :root {
    color-scheme: dark;
  } */
  body {
    background: #222;
    color: #fff;
  }
}
