body{
    background-color: #b13a38;
    overflow: hidden;
}

.navigation {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
  }

li a {
    display: block;
    color: #ffffff;
    text-align: left;
    padding: 14px 16px; 
    text-decoration: none;
  }

p{
  width: 80%;

}

.links{
    color: white;
    display:block;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}


a:hover {
  background-color: #872928;
  font-size: 18px;
}

@keyframes fade-in-slow {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

img {
  max-width: 90%; /* Ensure image is responsive */
}

/* Splash screen animations should stay unaffected, and this is the new animation for .mold */
.mold {
animation: moldAnimation 50s ease-in-out infinite;
animation-duration: 50s;
z-index: -1;
}

/* Define the animation you want for the mold */
@keyframes moldAnimation {
0% {
transform: scale(1);
opacity: 0;
}

}
30% {
transform: scale(1);
opacity: 0.2;

}
