body {
  font-family: "Bonbon", serif;
  font-weight: 400;
  font-style: normal;
  font-size: larger;
  background-color: #cae1f5; /* light blue background */
  color: #333;
  text-align: center;
  padding: 20px;
}
h1 {
  color:#38AECC;
  font-weight:600;
}

h2 {
  color:#61b9cf;
  font-weight:600;
}

.question-box {
  background-color: aliceblue;
  font-family: "Henny Penny", serif;
  font-weight: 400;
  font-style: normal;
  border-radius: 10px;
  box-shadow: 5px 10px 8px #b1bcdb;
  padding: 7%;
  width: 700px;
  margin: auto;
  justify-content: center;
}
.question {
  margin-bottom: 30px;
}
button {
  background-color: #4f9acc;
  color:#d6e4f1;
  border: none;
  padding: 10%;
  font-size: 20px;
  cursor: pointer;
  border-radius: 5px;
  margin: 10px;
  font-family: "Henny Penny", serif;
  font-weight: 400;
  font-style: normal;
}
button:hover {
  background-color: #04538d;
}
button:active {
  transform: scale(0.95);
}
button:disabled {
  background-color: #26325b;
}

#result {
  font-size: 25px;
  font-weight: bold;
  margin-top: 30px;
}

#next {
  padding: 5%;
  position: relative; 
  justify-content: right;
  background-color:#04538d;
  color: aliceblue;
}

#next:disabled {
  background-color:#365076;
}


footer {
  margin-top: 35px;
  text-align: center;
  padding: 5px;
  background-color: aliceblue;
  color: #04538d;
  border-radius: 20px;
}

img {
  display: none;
}

img.show {
  margin: 0;
  display: flex;
  justify-self: center;
  border-radius: 10px;
}

#end {
  display: none;
}

#end.show {
  display: flex;
  justify-self: center;
}