.video-container{
    width: 100%;
    height: 31rem;
    background-color: antiquewhite;
    position: relative;
}
.video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(86, 86, 86, 0.4);
}
.heading-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
   
}
.heading-container h1 {
    font-size: 4rem;
    color: white;
    text-align: center;

}

@media (max-width: 419px) {
    .heading-container h1 {
        font-size: 3rem;
    }
}