.contenido {
    display: flex;
    flex-direction: column;
    justify-self: center;

    align-items: center;
    width: 90%;
}


.informacion {

    margin-top: 40px;
    margin-bottom: 40px;

    width: 80%;

    display: flex;
    flex-direction: column;
    align-items: center;

}

.informacion h1 {

    font-size: 40px;

}

.informacion p {
    width: 80%;
    font-size: 18px;
}


.colaboradores {


    display: flex;
    flex-direction: column;

}

.colab {

    border: 2px solid rgb(53, 121, 224);
    border-radius: 8px;
    margin: 18px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding-bottom: 10px;
    max-width: 1200px;
}

.colab h2 {
    font-size: 40px;
    margin-bottom: 1px;

}

.colab p {
    width: 80%;
    font-size: 20px;
}



.colab img {

    border-radius: 8px;
    width: 90%;


}


.linkColab {

    background-color: white;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 5px;
    font-size: 22px;
    padding: 10px;
    margin-top: 10px;

}

.linkColab:hover {

    border: 2px solid rgb(57, 114, 199);
    color: rgb(57, 114, 199);


}

@media (max-width: 300px) {


    .informacion h1 {

        font-size: 28px;

    }

    .informacion p {
        width: 90%;
        font-size: 14px;
    }




    .colab h2 {
        font-size: 30px;
        margin-bottom: 1px;

    }

    .colab p {
        width: 80%;
        font-size: 14px;
    }



    .colab img {

        border-radius: 8px;
        width: 95%;


    }


    .linkColab {

        background-color: white;
        border: 2px solid rgb(0, 0, 0);
        border-radius: 5px;
        font-size: 16px;
        padding: 4px;
        margin-top: 10px;
        width: 90%;
    }




}