.video_button {
    padding: 22px 27px 22px 27px;
    background-color: rgba(216,33,34,0.9);
    border-style: none;
    color: white;
    z-index: 5;
}

.video_button:hover {
    background-color: rgba(0,0,0,0.9);
    transition: color 200ms;
    transition: background-color 200ms;
    cursor: pointer;
}

.preview_container {
    width: 100%;
    aspect-ratio: 3 / 2;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: contain;
    }

.play_triangle {
    width: 0; 
    height: 0; 
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 30px solid white;
    margin-left: 22px;
    margin-right: 16px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.modal {
    position: fixed;
    z-index: 50;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video_container {
    position: absolute;
    width: 70vw;
    max-height: 70vh;
    aspect-ratio: 16 / 9;
    z-index: 99;
    filter: drop-shadow(20px 20px 50px rgb(0 0 0 / 0.7));
    border: none;
}

.video_preview_image {
    position: absolute;
    aspect-ratio: 3 / 2;
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
  .video_container {
    width: 100vw;
}