/* GENERAL */

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    box-sizing: border-box;

    background-color: #000000;
    color: #fff;
    font-family: "Acme", sans-serif;
    font-size: 1.6rem;
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 4.0rem;
    color: red;
}

h3 {
    font-size: 3.2rem;
}

h4 {
    font-size: 2.4rem;
}

h1, h2, h3, h4 {
    padding: 2rem 0;

    text-align: center;
}

/* AUXILIARES */

.contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* BODY */
    
header, .hero {
    li {
        list-style: none;
    }

    a {
        text-decoration: none;
        color: #fff;
    }
}

.hero {
    margin: 2rem 0;
    
    justify-content: center;
    align-items: flex-start;

    span {
        color: red;
    }

    .miFoto {         
        box-sizing: border-box;

        width: 25rem;
        border-radius: 50%;
        border: 0.5rem solid red;
    }

    .presentacion {
        width: 40rem;
    }

    .redesSociales {
        margin-top: 1rem;
        
        justify-content: space-around;       

        img {
            width: 4rem;

        }
    }
}

.experiencia, .logros, .proyectos {
    justify-content: center;
    flex-wrap: wrap;

    .elemento {
        width: 40rem;
        
        border-radius: 1rem;
        background-color: rgba(255, 255, 255, 0.15);


        & * {
            padding: 0 0.5rem;
        }

        & :last-child {
            padding-bottom: 1rem;
        }

        h4 {
            margin: 0 0 1rem;
            background-color: rgba(255, 0, 0, 0.75);
            padding: 1rem 0;
        }

        p { 
            text-align: center;
        }

        .año {
            font-weight: bolder;
        }

    }
}
