.forest-page {
  background-color: lightgreen;
}

.waterfall-page {
  background-color: lightblue;
}

.meadow-page {
  background-color: green;
}

.zoo-page {
  background-color: #f4ef88;
}

a {
  text-decoration: none;
}

.selections {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.forest {
  display: block;
  margin: 0 auto;
}

.choice {
  border: 1px solid black;
  width: 200px;
  height: 200px;
}

.choice:hover {
  cursor: pointer;
}


.selections .choice:first-of-type {
  background-color: green;
  transition-property: background-color;
  transition-duration: 5s;
  transition-delay: 0.8s;
  transition: ease-in-out;
  /*margin-left: 300px;*/
}

.selections .choice:last-of-type {
  background-color: lightblue;
  transition-property: background-color;
  transition-duration: 5s;
  transition-delay: 0.8s;
  transition: ease-in-out;
  /*margin-right: 300px;*/
}

.selections .choice:first-of-type:hover {
  background-color: #acf39d;
}

.selections .choice:last-of-type:hover {
  background-color: #00A8E8;
}

.hidden-text {
  display: none;
  transition-property: display;
  transition-duration: 5s;
  transition-delay: 0.8s;
}

.selections .choice:first-of-type .hidden-text p {
  color: green;
}

.selections .choice:last-of-type .hidden-text p {
  color: blue;
}

.choice .hidden-text {
  transition-property: display;
  transition-duration: 5s;
  transition-delay: 0.8s;
}

/*.hidden-text p {*/
/*  text-align: center;*/
/*}*/

.choice:hover .hidden-text {
  display: block;
}

.choice:hover .hidden-text p {
  text-align: center;
}

.moo-deng {
  width: 100px;
  height: 100px;
  /*border: 1px solid black;*/
}

.dialogue-box {
  border: solid black 1px;
  width: 400px;
}

.dialogue {
  padding: 20px;
}


.leaf {
  width: 25px; /* Adjust size as needed */
  height: 25px;
  background-color: #5ED80D; /* Brown color for a fallen leaf */
  border-radius: 0 50% 50% 50%; /* Shape to resemble a leaf */
  position: relative; /* Allows positioning and animation */
  bottom: 0; /* Starting point from the bottom */
  left: 50%; /* Starting point from the middle horizontally */
  transform: translateX(-50%); /* Center the leaf horizontally */
  animation: floatAway 10s ease-out infinite; /* Apply the animation */
}

@keyframes floatAway {
  0% {
    opacity: 1;
    transform: translate(-50%, 50px) rotate(0deg);
  }
  25% {
    transform: translate(-70%, 25px) rotate(45deg); /* Move up and left, rotate */
  }
  50% {
    transform: translate(-30%, 0px) rotate(90deg); /* Move further up and right, rotate more */
  }
  75% {
    transform: translate(-80%, -25px) rotate(135deg); /* Move up and left, rotate more */
    opacity: 0.8;
  }
  100% {
    opacity: 0; /* Fade out */
    transform: translate(-100%, -50px) rotate(180deg); /* Move off-screen, complete rotation */
  }
}

.droplet-container {
  position: relative;
}

.droplet {
  width: 5px;
  height: 10px;
  background-color: blue;
  border-radius: 50%;
  position: absolute;
  right: 25%;
  animation: fall 2s linear infinite;
  opacity: 0; /* Start invisible */
}

.droplet-2 {
  width: 5px;
  height: 10px;
  background-color: blue;
  border-radius: 50%;
  position: absolute;
  right: 15%;
  animation: fall 2s linear infinite;
  opacity: 0; /* Start invisible */
}

.droplet-3 {
  width: 5px;
  height: 10px;
  background-color: blue;
  border-radius: 50%;
  position: absolute;
  right: 10%;
  animation: fall 2s linear infinite;
  opacity: 0; /* Start invisible */
}

@keyframes fall {
  0% {
    transform: translateY(0);
    opacity: 0.8;
  }
  100% {
    transform: translateY(100px); /* Adjust distance */
    opacity: 0;
  }
}

.moo-deng-zoo {
  height: 250px;
  width: 250px;
}
