body {
  background-color: #c3e6e3;
  font-family: Darumadrop One;
}

a {
  color: #987866;
}

.container {
  margin: 120px auto;
  max-width: 600px;
}
header {
  margin-bottom: 30px;
}

h1 {
  text-align: center;
  font-weight: 300;
  line-height: 1.5;
  color: #1f4548;
  font-size: 50px;
  text-shadow: 2px 2px 5px white; /* Orange-red shadow */
}

main {
  font-family: Arial, sans-serif;
  padding: 20px;
  text-align: center;
}

form {
  margin-bottom: 20px;
}

select {
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 25px;
  border: 1px solid #1f4548;
  width: 250px;
  background-color: whitesmoke;
  margin-bottom: 15px;
}

input[type="submit"] {
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 25px;
  border: none;
  background-color: rgba(65, 185, 65, 0.892);
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

input[type="submit"]:hover {
  background-color: rgb(91, 226, 91);
}

.topic {
  font-size: 20px;
  background-color: rgb(235, 239, 235);
  padding: 20px;
  line-height: 1.5;
  border-left: 5px solid rgb(148, 223, 148);
  border-radius: 3px;
  display: none;
}

#loading-message {
  display: none; /* Hidden initially */
  font-size: 18px;
  font-weight: bold;
  color: #ff4500; /* Orange-red color */
  text-align: center;
  margin: 23px 0;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  } /* Less drastic fade */
  100% {
    opacity: 1;
  }
}

footer {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
  font-family: Arial, Helvetica, sans-serif;
}
