body {
  font-family: "Roboto Mono", monospace;
  background-color: #C2E2FA;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 0;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 250px;
  margin: 0;
  padding: 10px 45px 40px 45px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

section h1 {
  margin: 30px 0 0 0;
  color: #333333;
  font-size: 1.8rem;
}

section p {
  color: #666666;
  margin: 10px 0 20px 0;
}

input {
  font-family: "Roboto Mono", monospace;
  display: flex;
  text-align: center;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  width: 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

form {
  font-family: "Roboto Mono", monospace;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

button {
  font-family: "Roboto Mono", monospace;
  background-color: #FF8F8F;
  color: white;
  padding: 7px 25px;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  font-size: .8rem;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button:hover {
  background-color: #FF6F6F;
  font-weight: bolder;
}

#result.open {
  animation: fadeIn 0.5s ease-in-out;
  border: 1px solid #ddd;
  padding: 15px 25px;
  margin-top: 30px;
  border-radius: 10px;
  background-color: #FFF1CB;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
}

