:root {
    --imageHeight: 100px;
    --azulLogo: #1972B7;
    --azulBackground: #4c7dad;
    --sombra: 5px 0px 15px 0px rgb(0, 0, 0, .4);
    --h2FontSize: 42px;
    --pFontSize: 18px;
}


/* ________________________________________________________________________________ */

/* PROYECTO */


.proyecto {
    background-color: #fff;
    line-height: 42px;
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: var(--sombra);
}

.proyecto__h2 {
    padding: 10px 0;
    font-size: var(--h2FontSize);
}

.proyecto__p {
    font-size: var(--pFontSize);
}

.container__iframe {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    height: 300px;
}

.proyecto__iframe {
    width: 100%;
    border-radius: 5px;
    box-shadow: var(--sombra);
}

@media screen and (min-width: 850px) {
    .container__iframe {
        height: 620px;
    }
    .proyecto__iframe {
        width: 85%;
    }
}