.video-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 64px 0;
    margin-bottom: 40px;
    background-image: url("../background.jpg");
    background-size: cover;
    background-position: center center;
}

.video-container {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.video-container .video{
    border-radius: 32px;   
}

.video {
    width: 100%;
    height: auto;
}

.video__title {
    margin-bottom: 40px;
    color: #444;
    font-size: 2rem;
    font-weight: bold;
}

@media (min-width: 768px) and (max-width: 1299px){
    .video-container .video{
        width: 90%;
        margin: auto;
    }
}

@media (max-width: 767px) {
    .video__title {
        font-size: 1.5rem;
    }

    .video {
        width: 90%;
    }
}