/* Videos */





/* Box for videos and text */

.box {
    background-color: rgba(168, 158, 148, 0.95);
    padding: 35px 40px 35px;
    max-width: 900px;
    margin: 50px auto;
    border-radius: 20px;
    border-color: rgba(109, 91, 91, 1);
    /* border-style: solid;
    border-width: 1.5px; */
}





/* Container */

.container_videos {
    display: grid;
    max-width: 900px;
    grid-template: 35px auto / 3fr 2fr;
    gap: 40px 30px;
    margin: auto;
}






/* Container items */

.title {
    grid-area: 1 / 1 / 1 / span 2;
}

.video {
    grid-area: 2 / 1 / 2 / 1;
}

.description {
    grid-area: 2 / 2 / 2 / 2;
}






/* Videos and text */

.container_videos > iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
}

h4 {
    text-align: left;
}