/* ---------------------------------------------------
   Estilos Generales
   --------------------------------------------------- */
body{
    margin: 0;
    padding: 0;
    color: #ffffff;
    background-color: #000000;
}
.seccion{
    padding: 5% 20%;
}
#header_principal{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 5%;
}
#nav_principal{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
main{
    min-height: 100vh;
}
#fondo_estrellado{
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#hero{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
}
.hero_info{
    width: 50%;
}
.hero_media{
    width: 50%;
}
#about{
    background-image: url("../img/bg-morado.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#about article{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3em;
}
#about article div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30%;
    text-align: center;
}
#about article span{
    border: solid 2px white;
    border-radius: 50%;
    padding: 0.5em;
}
#about article span i{
    width: 2.5em;
    height: 2.5em;
    font-size: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}
#skills article{
    display: flex;
    overflow-x: auto;
    gap: .75em;
    padding-bottom: .5em;
    /* Firefox - Scroll */
    scrollbar-width: thin;
    scrollbar-color: #888 transparent;
}
/* WebKit (Chrome, Edge, Safari, Opera) */
#skills article::-webkit-scrollbar {
    height: 6px; /* alto de la barra horizontal */
}
#skills article::-webkit-scrollbar-track {
    background: transparent; /* fondo de la pista */
}
#skills article::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 999px;
}
#skills span{
    border: solid 1px white;
    padding: 0.3em 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 20%;
    border-radius: 5px;
}
#skills p{
    margin: 0;
}
#projects{
    background-image: url("../img/bg-metro.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.fade{
    background-color: rgb(0, 0, 0, .5);
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
footer{
    padding: 5% 10%;
}