body {
  background-color: #e6f0fa;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #333333;
}

.container {
  margin: 0px auto;
  margin-top: 50px;
  max-width: 600px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h1 {
  font-family: "Tagesschrift", system-ui;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
}

.instructions {
  font-size: 14px;
}

p small {
  color: grey;
  font-size: 10px;
}

form {
  padding-top: 0;
  text-align: center;
}

.userInput {
  width: 90%;
  border-radius: 4px;
  border: none;
  padding: 16px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 200ms ease-in-out;
  border: 1px solid #ccc;
}
.button {
  border-radius: 4px;
  border: none;
  padding: 16px;
  background: #2f80ed;
  color: white;
  margin-top: 10px;
}
.button:hover {
  background: #1366d6;
  cursor: pointer;
}

.hidden {
  display: none;
}

.answer {
  background-color: #f0f4f8;
  width: 90%;
  border-radius: 8px;
  padding: 10px;
  margin: auto;
  font-size: 16px;
  font-style: italic;
}

footer {
  text-align: center;
  font-family: monospace;
  margin-top: 20px;
}
