body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    max-width: 100%;
}

.title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    max-width: 100%;
}

.container {
    text-align: center;
    max-width: 70%;
    max-width: 1000px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    max-width: 70%;
    line-height: 1.2;
}

.text-container {
    line-height: 1;
    width: 90%;
    max-width: 90%;
    font-size: 20px;
    line-height: 0.5;
    text-align: justify;
    padding: 0 10%;
}

.text-bottom {
    font-size: 18px;
    line-height: 1;
    text-align: justify;
    width: 70%;
    max-width: 70%;
    max-width: 800px;
}

.image {
    width: 300px; 
    height: 300px; 
    object-fit: cover;
    clip-path: circle(50%);
}

.video-player {
    margin-top: 40px;
    width: 854px;
    height: 480px;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    position: relative;
}

.caption {
    margin-top: 10px;
    font-size: 18px;
    text-align: center;
}

.big-button {
    margin-top: 10px;
    padding: 15px 20px;
    font-size: 20px;
    background: red;
    color: white;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
}

.text-wrapper {
    text-align: justify;
    font-size: 20px;
}

.img {
    width: 450px;
    height: 450px;
    object-fit: cover; 
    float: left;
    shape-outside: circle(50%);
    border-radius: 50%;
    margin: 0 1em;
}

img:nth-child(2) {
    width: 450px;
    height: 450px;
    object-fit: cover; 
    float: right;
    shape-outside: circle(50%);
    border-radius: 50%;
    margin: 0 1em;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: auto;
    background: #000;
    padding: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    transition: opacity 0.3s;
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap; 
}

button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
}

input[type="range"] {
    flex-grow: 1;
    margin: 0 10px;
    min-width: 100px; 
}

.video-container:fullscreen,
.video-container:-webkit-full-screen,
.video-container:-moz-full-screen {
    width: 100vw;
    height: 100vh;
}

.video-container:fullscreen video,
.video-container:-webkit-full-screen video,
.video-container:-moz-full-screen video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.video-container:fullscreen .controls,
.video-container:-webkit-full-screen .controls,
.video-container:-moz-full-screen .controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    bottom: 10px;
    padding: 10px;
}


@media (max-width: 1024px) {
    .title {
        font-size: 24px;
    }

    .img {
        width: 350px;
        height: 350px;
    }

    .video-container {
        max-width: 90%;
        height: auto;
    }

    .controls button {
        font-size: 16px;
    }

    input[type="range"] {
        height: 4px;
    }
}


@media (max-width: 768px) {
    .title {
        font-size: 22px;
    }

    .img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .video-container {
        width: 100%;
        height: auto;
    }

    .big-button {
        font-size: 16px;
    }

    .controls button {
        font-size: 14px;
        padding: 2px;
    }

    input[type="range"] {
        height: 3px;
    }
}


@media (max-width: 480px) {
    .title {
        font-size: 18px;
    }

    .img {
        width: 150px;
        height: 150px;
    }

    .video-container {
        width: 100%;
        height: auto;
    }

    .controls button {
        font-size: 12px;
    }

    input[type="range"] {
        height: 2px;
    }
}
.marquee {
    width: 100%;
    box-sizing: border-box;
    background: #000;
    color: #fff;
    padding: 10px 0;
    font-size: 18px;
    font-weight: bold;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    text-align: center;
    text-decoration: none;
  }

  body::before,
  body::after {
      content: "";
      position: fixed;
      top: 0;
      width: 12%; 
      height: 100vh;
      background: url('./img/bf.jpg') no-repeat center center;
      background-size: cover;
      z-index: -1;
  }
  
  body::before {
      left: 0;
  }
  
  body::after {
      right: 0;
  }
