div.youtube_videos
{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


div.youtube_videos > h1
{
    font-size: calc(var(--smallFontSize) + 1.5rem);
    padding: 2rem;
}


div.youtube_videos > div.videos
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

div.youtube_videos > div.videos > iframe
{
    width: 560px;
    height: 315px;
}

@media only screen and (max-width: 500px)
{
    div.youtube_videos > h1
    {
        font-size: calc(var(--smallFontSize) + 0.3rem);
        padding: 0;
        padding-bottom: 1rem;
    }

    div.youtube_videos > div.videos > iframe
    {
        width: 100%;
        height: calc(100vw / 1.6);
    }
}