
    .video-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      background: black;
    }

    .video-container video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
     /* Floating text */
    .floating-text {
        position: absolute;
        top: 10%;
        width: 100%;
        text-align: center;
        color: white;
        font-size: 2rem;
        font-weight: bold;
        text-shadow: 0px 0px 15px rgba(0,0,0,0.9);
        animation: fadeInOut 3s infinite;
    }
         /* Floating text */
    .floating-video {
        position: absolute;
        top: 10%;
        width: 100%;
        text-align: center;
        color: white;
        font-size: 2rem;
        font-weight: bold;
        text-shadow: 0px 0px 15px rgba(0,0,0,0.9);
        animation: fadeInOut 3s infinite;
    }

    @keyframes fadeInOut {
        0% { opacity: 0; }
        30% { opacity: 1; }
        70% { opacity: 1; }
        100% { opacity: 0; }
    }
        .flyer3_1 {
          width: 100%;
          height: auto;
          display: block;
        }