*{
    box-sizing:border-box;
}

body {
    font-family: 'Lexend', sans-serif;
    background-color: #F6F4E8;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    font-weight: 300;
}

/* TITULOS */

h1 {
    font-size: 60px;
    color: #CA6180;
    margin-bottom: 10px;
}

h2 {
    font-weight: 700;
    color: #349244;
    margin-bottom: 8px;
    line-height: 1.5;
}

h3 {
    font-weight: 500;
    color: #6278f1;
    margin-bottom: 5px;
}

/* TEXTO */

p {
    margin-top: 5px;
    line-height: 1.4;
}

/* BOTONES */

.boton {
    background-color: #6278f1;
    color: rgb(243, 225, 229);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    display: inline-block;
}

.boton:hover {
    background-color: #4f63d6;
}

/* HEADER */

header {
    margin-bottom: 50px;
}

/* MENU */

nav article{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

/* EQUIPO */

.equipo {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* INFO */

.info-fadu p {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 3px;
}

/* FOOTER */

footer {
    margin-top: 100px;
}

/* LOGO */

.logo{
    margin-bottom: 30px;
}

/* IMAGENES */

img{
    max-width:100%;
    height:auto;
    display:block;
}

.persona-img{
   width:100%;
   max-width:700px;
   height:auto;
}

.mvp-img{
   width:100%;
   max-width:700px;
   height:auto;
}

.mapa-img{
   width:100%;
   height:auto;
}

/* RESPONSIVE */

@media (max-width:768px){

    body{
        padding:10px;
    }

    h1{
        font-size:40px;
    }

    nav article{
        flex-direction:column;
        align-items:stretch;
    }

    .boton{
        width:100%;
        text-align:center;
    }

    .equipo{
        flex-direction:column;
    }

}

.contenedor-img{
    display: flex;
    gap: 20px;
}

.contenedor-img img{
    width: 200px;
    height: auto;
}