
body {
  font-family: Arial, sans-serif;
  background-color: #f9f5e7; 
  margin: 0;
  padding: 0;
}

.container {
  text-align: center;
  padding: 5%;
}

h1 {
  background-color: #e0c3fc; 
  border: 2px solid #b39ddb; 
  border-radius: 15px;
  padding: 20px;
  color: #333;
  max-width: 80%;
  margin: 20px auto;
  box-shadow: 0 0 15px rgba(179, 157, 219, 0.6); 
  text-align: center;
}


.question {
  display: inline-block;
  width: 120px;
  height: 120px;
  margin: 10px; 
}

.question button {
  background-color: #4CAF50; 
  border: none;
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  height: 100%;
}

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


#result {
  margin-top: 20px;
  text-align: center;
  color: green;
}


#message {
  font-weight: bold;
  font-size: xx-large;
}

#question-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#answer-container {
	font-size: 25px;
	
}
