#video {
    background-color: #f8f8f8;
}

.video-container {
    text-align: center;
}

video {
    width: 60%;
    height: 60%;
    border-radius: 1vw;
    box-shadow: 0 1vw 1.5vw -1vw rgba(0, 0, 0, 0.15);
}

h2 {
    text-align: center;
    font-size: 1rem;
    color: black;
    margin-bottom: 20px;
}

@media (min-width: 768px) {

    h2 {
        font-size: 2rem;
        
    }
}

@media (max-width: 1000px) {

    video {
        width: 90%;
        height: 90%;
    }

}