@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body{
    font-family: 'Questrial', sans-serif;
}

main{
    width: 100%;
}

img {
    max-width: 360px;
}

header{
    background-color: #424753;
    text-align: center;
}

/*portada*/
.portada{
    margin: 0 auto;
    padding: 2rem 0;
}

/*presenta*/
.presenta{
    width: 100%;
    background-color: #e0e0e5;
    text-align: center;
}

h1{
    font-weight: 400;
    padding: 20px;
}

.sitio{
    color: #424753;
    text-align: center;
    padding: 20px;
}

/*contacto*/
.cvs{
    width: 100%;
    background-color: #eceeef;
    padding: 20px;
}

.contenido_col1{
    color: #000;
    text-align: center;
    font-size: 20px;
}

.contenido_col1 p{
    padding-bottom: 20px;
}

.contenido_col1 a{
    color: #065f24;
}

.contenido_col1 a:hover{
    color: #0f8b38;
}

/* footer */
footer{
    background: #424753;
    padding: 12px;
    display: flex;
    justify-content: center;
}

.title_footer{
    color: #fff;
    text-align: center;
}

.title_redes{
    background-color: #000;
    padding-top: 20px;
}

.redes{
    gap: 20px;
    padding: 16px;
}

.redes a{
    color: #e0e0e5;
}

.redes a:hover{
    color: #fff;
}

@media screen and (max-width: 768px){
    nav, .row{
        flex-direction: column;
    }
    .portada img{
        width: 100%;
    }
    .seccion{
        width: 100%;
    }
    .contenido_texto_mapa{
        padding: 0 0 20px 0;
    }
    aside img{
        padding-bottom: 20px;
    }
    .contenido_col1{
        padding-bottom: 20px;
    }
}