#video {
    margin-top: 200px;
    margin-bottom: 50px;
    display: flex;
    gap: 20px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
}

#video-text {
    flex: 1;
    font-size: 20px;
}

#video-text h3 {
    text-align: center;
}

#video-iframe {
    flex: 1;
    width: 200px;
    aspect-ratio: 16 / 9;
}

#video-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    #video {
        flex-direction: column;
        align-items: center;
    }

    #video-text, #video-iframe {
        width: 100%;
        flex: none;
    }

    #video-iframe {
        aspect-ratio: 1 / 1;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    #video {
        margin-top: 0px !important;
    }
    #video-text {
        font-size: 16px;
    }
}