/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #ff6f61;
  margin-bottom: 10px;
}

h1 {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
}

.controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

label {
  font-size: 16px;
  color: #555;
}

select, button {
  padding: 10px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}

button {
  background-color: #4caf50;
  color: white;
  border: none;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #45a049;
}

#showAnswer {
  background-color: #2196f3;
}

#clear {
  background-color: #f44336;
}

.question {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 20px 0;
}

.answer {
  font-size: 18px;
  color: #555;
  margin: 10px 0;
}
