* {
    margin: 0;
    padding: 0;
    font-family: serif;
    border-radius: 0;
}

body {
    width: 100%;
    padding: 0;
    margin: 0;
    
}

.logo {
    width: 150px;
    height: 35px;
    margin-top: -5px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-height: 8vh;
    background-color: rgba(0, 0, 0, 0.8);
} 

.ham {
    display: none;
    cursor: pointer;
    border: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

.ham span {
    display: block;
    background-color: black;
    height: 3px;
    width: 28px;
    margin: 10px auto;
    border-radius: 2px;
}

.enlaces-menu {
    display: flex;
    padding: 0;

}

.enlaces-menu li{
    padding: 20px 25px 10px 25px;
    list-style: none;
    transition: 0.6s;
}

.enlaces-menu li a{
    text-decoration: none;
    font-size: 1rem;
    color: whitesmoke;
    font-family: 'Roboto Mono', monospace;
}

.enlaces-menu li:hover {
    text-decoration: underline whitesmoke;
    text-decoration-thickness: 2.5px;
    
}

/*---------------------- MENU RESPONSIVE ---------------------*/

@media (max-width: 768px){

    .ham {
        display: block;
        position: absolute;
        top: 10px;
        right: 25px;
        filter: invert(100%);
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 7px 0;
    }

    .enlaces-menu {
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        height: 92hv;
        margin: 0;
        padding: 0;
        width: 100%;
        display: none;
        opacity: 0;
    }

    .enlaces-menu li {
        width: 100%;
        text-align: center;
        padding: 20px;
    }
}

@keyframes muestraMenu {
    from{opacity:0;}
    to{opacity:1;}
}

.enlaces-menu.activado {
    display: flex;
    animation: muestraMenu 350ms ease-in-out both;
}

/*---------------------- COLUMNA 1 ---------------------*/


.cuerpo {
    display: flex;
    flex-direction: row;
    padding: 90px;
    justify-content: space-between;
}

.columna1 {
    display: flex;
    flex-direction: column;
    width: 45%;
}

.columna1 img {
    width: 40%;
    border-radius: 30px;
    float: left;
    margin: 15px;
}

.columna1 h1 {
    font-family: 'Bitter', serif;
    color: white;
    background-color: black;
    width: 89%;
    font-size: 2.5em;
    text-align: start;
    padding: 20px;
    border-radius: 15px;
    margin: 15px;
}

.columna1 h2 {
    font-family: 'Roboto Mono', monospace;
    font-size: 2em;
    margin-top: 20px;
}

.columna1 p {
    font-family: 'Roboto Mono', monospace;
    margin: 15px;
    text-align: justify;
    font-size: 1vw;
}

.bio1 {
    margin-bottom: 150px;
    background-image: url("../media/mancha1.png");
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: 10% top; 
}

.bio2 {
    margin-bottom: 150px;
    background-image: url("../media/mancha2.png");
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: left bottom; 
}

.bio3 {
    background-image: url("../media/mancha3.png");
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: right top; 
}

@media (max-width: 768px){
    .cuerpo {
        flex-direction: column;
        padding: 30px;

    }

    .columna1 {
        width: 100%;
    }
    
    .columna1 h1 {
        width: 85%;
    }

    .columna1 p {
        font-size: 3svw;
    }

    .bio1 {
        margin-bottom: 30px;
    }

    .bio2 {
        margin-bottom: 30px;
        background-image: url("../media/mancha2.png");
        background-repeat: no-repeat;
        background-size: 70%;
        background-position: center; 
    }

    .bio3 {
        margin-bottom: 30px;
    }
}


/*---------------------- COLUMNA 2 ---------------------*/


.columna2 {
    display: flex;
    flex-direction: column;
    width: 45%;
}

.columna2 img {
    width: 40%;
    border-radius: 30px;
    float: left;
    margin: 15px;
}

.columna2 h1 {
    font-family: 'Bitter', serif;
    color: white;
    background-color: black;
    width: 89%;
    font-size: 2.5em;
    text-align: start;
    padding: 20px;
    border-radius: 15px;
    margin: 15px;
}

.columna2 h2 {
    font-family: 'Roboto Mono', monospace;
    font-size: 2em;
    margin-top: 20px;
}

.columna2 p {
    font-family: 'Roboto Mono', monospace;
    margin: 15px;
    text-align: justify;
    font-size: 1vw;
}

.bio4 {
    margin-top: 250px;
    margin-bottom: 150px;  
    background-image: url("../media/mancha4.png");
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: left bottom;   
}

.bio5 {
    margin-bottom: 150px;    
    background-image: url("../media/mancha5.png");
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: top right;  
}

.bio6 {
    background-image: url("../media/mancha6.png");
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: right bottom;  
}

@media (max-width: 768px){
    .cuerpo {
        flex-direction: column;
        padding: 30px;
    }

    .columna2 {
        width: 100%;
    }
    
    .columna2 h1 {
        width: 85%;
    }

    .columna2 p {
        font-size: 3svw;
    }

    .bio4 {
        margin-top: 0;
        margin-bottom: 30px;
    }

    .bio5 {
        margin-bottom: 30px;
    }

    .bio6 {
        margin-bottom: 30px;
        background-image: url("../media/mancha6.png");
        background-repeat: no-repeat;
        background-size: 80%;
        background-position: right; 
    }
}
