* {
    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;
}

/*---------------------- SECCION 1 ---------------------*/

.seccion1 {
    padding: 50px 150px 50px 150px;
    height: 100vh;
    background-image: url("../media/mancha3.png");
    background-repeat: no-repeat;
    background-size: 35%;
    background-position: top left 100px; 
}

.seccion1 h1{
    font-family: 'Bitter', serif;
    color: white;
    background-color: black;
    width: max-content;
    font-size: 3em;
    padding: 20px;
    border-radius: 15px;
}

.seccion1 p {
    position: relative;
    font-family: 'Roboto Mono', monospace;
    margin-top: 40px;
    text-align: justify;  
    font-size: 0.9em;  
}

.imagenes {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 0;
}

.imagenes div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.imagenes img {
    width: 190px; 
    border-radius: 100%;
    margin: 50px 20px 20px 20px;
    transition: all 0.4s ease-in-out;    
}

.imagenes img:hover {
    transform: scale(1.1);
}

.imagenes h2 {
    font-family: 'Roboto Mono', monospace;
    width: max-content;
    font-size: 1em;
}

.imagenes p {
    position: relative;
    font-family: 'Roboto Mono', monospace;
    margin-top: 10px;
    text-align: center; 
}

@media (max-width: 768px){
    .seccion1 {
        padding: 30px 30px 30px 30px;
        height: 90vh;
        background-size: 70%;
        background-position: top left; 
    }

    .imagenes {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 10px 50px 50px 50px;
    }

    .seccion1 h1{
        font-size: 2em;        
    }
    
}