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

.top {
    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: center;
    padding: 14px 16px; 
    text-decoration: none;
  }


.tools {
   color:#ffffff;
   padding:100px;
   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: 50%; /* 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;
}

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

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

}

