.video-container {
    overflow: hidden;
    /* border: 1px #ff9900 solid; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 24px;
    width: 1303px;
    margin: 0 auto;
    padding: 24px 24px 24px 24px;
    background: #343434;
    overflow: hidden;
    border-radius: 4px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index:9999;
    }
    .container {
        text-align: center;
        margin-top: 50px;
    }

    .video-link {
        display: inline-block;
        color: white;
        text-decoration: none;
        border-radius: 4px;
    }
    .video-link:hover {
        /*background-color: #45a049;*/
    }

    .video-popup {
        display: none;
        /* Hidden by default */
        position: fixed;
        /*z-index: 999;*/
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.7);
    }

    .video-container video {
        width: 100%;
        border-radius: 10px;
    }

    .close-button, {
        position: absolute;
        bottom: 20px;
        right: 20px;
        color: #aaa;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
    }

    .close-button:hover,
    .close-button:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
