.entry-video {
    position: relative;
    display: grid;
    align-items: center;
    justify-content: center;
    padding: 0;
    grid-template-columns: 1fr;
}

.entry-video > * {
    grid-column-start: 1;
    grid-row-start: 1;
}

.entry-video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    pointer-events: none;
}

.entry-video video[controls] {
    pointer-events: all;
}

.entry-video .video-overlay-text {
    position: relative;
    color: var(--white);
    font-size: 4.5vw;
    font-weight: 700;
    line-height: 1;
    z-index: 2;
    padding: 10vh var(--padding) 5vh;
    text-align: center;
    text-shadow: 0rem .5rem 1rem rgba(0,0,0,.16);
}

@media screen and (min-width: 769px) {
    .entry-video video {
        height: 80vh;
        align-self: stretch;
        min-height: 100%;
    }
}

@media screen and (max-width: 768px) {
    .entry-video video {
        min-height: 100vw;
    }

    .entry-video .video-overlay-text {
        font-size: 6.66vw;
    }
}