  .landing-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
 transition: opacity 0.4s ease-in-out;
  }

  .logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .logoS {
    width: 200px;
    height: auto;
    animation: logoFadeIn 1.2s ease-out forwards;
  }




  .site-title {
    color: white;
    font-size: 2rem;
    margin-top: 20px;
    opacity: 0;
      font-weight: bold;
    animation: titleFadeIn 1s ease-out forwards;
    animation-delay: 0.6s;
  }

  @keyframes logoFadeIn {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes titleFadeIn {
    to {
      opacity: 1;
    }
  }