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

.splash{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #b13a38;
    z-index: 200;
    color: rgb(255, 255, 255);
    text-align: center;
    line-height:  90vh;
}

.splash.display-none{
    position: fixed;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #b13a38;
    z-index: -10;
    color: white;
    text-align: center;
    line-height:  90vh;
    transition: all 2s;
}

@keyframes fadeIn{
    to{
        opacity: 3;
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

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

  li {
    float: left;
  }

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

  }

.introduction{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
 

p{
    width:50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
      }

 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;

    }
  