.video-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-items: stretch;
    align-items: flex-start;
    margin-top: 1rem;
}

.video-container {
    display: flex;
    width: 100%;
    height: fit-content;
}

.video-description-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.verse {
    font-style: italic;
}

.logo {
    margin: 0 auto
}

#jump-to-episode {
    width: fit-content;
    margin-left: auto;
    margin-top: 3rem;
    font-size: 1.5rem;
    font-weight: bold;
}

#jump-button {
    color: #8d36e4;
    text-decoration-line: underline;
    margin-left: 1rem;
}

@media (max-width: 640px) {
    .video-container {
        flex-direction: column;
    }

    .video-description-container {
        width: 100%;
    }

    #jump-to-episode {
        margin-right: auto;
    }

    h2 {
        margin: 0;
    }
}

@media (min-width: 640px) {
    .video-container {
        flex-direction: row;
        justify-content: center;
        gap: 1em;
    }

    .embed-youtube {
        width: 50%;
    }

    .video-description-container {
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .video-description-container {
        width: 60%;
    }

    .embed-youtube {
        width: 40%;
    }
}

.embed-youtube {
    position: relative;
    aspect-ratio: 16/9;
    object-fit: contain;
}

.embed-youtube img {
    width: 100%;
    left: 0;
}

.embed-youtube .embed-youtube-play {
    z-index: 1;
}

h1 {
    font-size: 44px;
    line-height: 105%;
    font-weight: 800;
}

h2 {
    font-size: 31px;
    margin-top: 8px;
    margin-bottom: 16px
}

.embed-youtube .embed-youtube-play:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26.0px;
    border-color: transparent transparent transparent #fff;
}

.embed-youtube img,
.embed-youtube .embed-youtube-play {
    cursor: pointer;
}

.embed-youtube img,
.embed-youtube iframe,
.embed-youtube .embed-youtube-play,
.embed-youtube .embed-youtube-play:before {
    position: absolute;
}

.embed-youtube .embed-youtube-play,
.embed-youtube .embed-youtube-play:before {
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.embed-youtube iframe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.embed-youtube .embed-youtube-play:hover {
    background-color: #f00;
}

.episode-link {
    position: absolute;
    bottom: 50%;
    z-index: -10;
}

#episode-select {
    background: #e9e9ed;
}