.video-container img.video-preview{
    cursor: pointer;
}

.video-container img.video-preview, .video-container iframe {
    max-width: 100%;
}

.videoRectangle{
    display: none;
    position: absolute;
    width: 600px;
    height: 100%;
    background-color: var(--principal-cream);
    opacity: 0.5;
    transform: rotate(171deg);
    transform-origin: center;
    z-index: -1;
    border-top-left-radius: 175px;
    border-bottom-right-radius: 175px;
}

@media (max-width: 979px) {
    .video-container img.video-preview, .video-container iframe {
        height: auto;
    }

    .videoRectangle{
        width: 120%;
    }
}