  body{
    background-color: #fffae8;
    font-family: Arial, Helvetica, sans-serif;
  }
    .splash-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      padding: 2rem;
    }

    h1 {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
    }

    p {
      font-size: 1.2rem;
      color: #333;
      margin-bottom: 2rem;
    }

    .video-container {
      width: 100%;
      max-width: 700px;
      aspect-ratio: 16/9;
      margin-bottom: 2rem;
    }

    iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .visit-button {
      background-color: #007aa3;
      color: white;
      font-weight: bold;
      padding: 1rem 2rem;
      font-size: 1rem;
      border: none;
      border-radius: 999px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
    }

    .visit-button:hover {
      background-color: #003f99;
    }