/* .has-changed {
  text-decoration: underline;
} */

/* .previous {
  outline: 1px solid green;
} */

.thanks {
  opacity: 1;
  animation-name: thanksOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
}

@keyframes thanksOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.previous li:first-child {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.2s;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Apply the fading underline animation to the specific class */
.has-changed {
  text-decoration: underline;
  text-decoration-color: transparent;
  animation: fade-in-underline 1s ease forwards; /* Animation duration and timing */
}

/* Define the fading underline animation */
@keyframes fade-in-underline {
  0% {
    text-decoration-color: transparent; /* Start with transparent underline */
  }
  100% {
    text-decoration-color: #00d1b2; /* Fully opaque underline (adjust color as needed) */
  }
}

/* .homepage-hero {
  background: url("/public/img/bg.jpg") 80% center;
} */

.homepage-hero {
  background: url("/img/bg.jpg") no-repeat center/100%;
}

.site-logo {
  width: 220px;
  margin: 12px;
  height: auto;
}

@media (min-width: 1024px) {
  .site-logo {
    margin: 14px 0 0 12px;
    width: 296px;
    height: auto;
  }
}
