body {
  font-family: "Poppins", sans-serif;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.fortune-container {
  text-align: center;
}

#fortune-button {
  background-color: #f5c242;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  font-family: "Roboto Slab", serif;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

#fortune-button:hover {
  transform: scale(1.1);
}

#fortune-result {
  margin-top: 20px;
  font-size: 24px;
  font-style: italic;
  color: rgba(55, 58, 60, 0.8);
  font-family: "Poppins", sans-serif;
  transition: opacity 0.3s ease-in;
}

.hidden {
  opacity: 0;
  height: 0;
}

#fortune-result.active {
  opacity: 1;
  height: auto;
}

footer {
  margin-top: 50px;
  position: absolute;
  bottom: 10px;
  text-align: center;
  font-size: 14px;
  color: rgba(55, 58, 60, 0.6);
  font-family: "Poppins", sans-serif;
}

footer a {
  color: #f5c242;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
