:root {
}

body {
  margin: 0;
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  font-family: sans-serif;
}

.small-text {
  font-size: 0.7em;
  opacity: 0.6;
}
.bg-close {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  appearance: none;
  border: none;
}
input,
textarea {
  font-size: 16px;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  textarea,
  input {
    background: black;
    color: white;
  }
  body {
    background: black;
  }
}
