:root{
    --primary-color: #0d0d0d;
    --secondary-color: #ff7e5f; 
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: var(--primary-color);
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-feature-settings: normal;
    font-variation-settings: normal;
    color: white;
}
header{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    height: 80px;
    position: fixed;
    width: 100%;
    border-bottom: #F2EBD5 0.5px solid;
    z-index: 1;
}

.titulo{
    font-size: 35px;
    font-weight: 600;
}
.navbar > ul{
    display: flex;
}

.navbar > ul > a >  li{
    margin-right: 30px;
    font-size: 20px;
    color: white ;
}

.iconos {
    font-size: 35px;
    margin-right: 20px;
    color: white;
}

a .iconos:hover, a .categorias:hover{
    color: var(--secondary-color);
    transform: scale(1.05);
    transition: 0.1s ease-in ;
}

a, a:visited{
    text-decoration: none;
    cursor: pointer;
}

.primero{
    height: 100vh;
}

.principal{
    padding-top: 105px;
}

.presentacion{
    width: 100%;
    font-size: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    
}

.presentacion > p{
    line-height: 1.2;
    font-weight: 700;
}

.nombre{
    background: linear-gradient(to bottom, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     font-weight: 700;
}

#subtitulo{
    font-size: 20px;
    font-weight: 300;
    margin-top: 20px;
}

.button{
    border: none;
    transition: .4s ease-in;
    cursor: pointer;
    width: 200px;
    padding: 10px;
    margin-top: 20px;
    border-radius: 10px;
    font-weight: 700;
}

.button::before, button::after{
    content: "";
}

button:hover{
    box-shadow: inset -10.5em 0 0 0 var(--secondary-color), 
    inset 10.5em 0 0 0 var(--secondary-color);
}

.skills{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.tec{
    width: 70px;
    transition: .4s;
}

.tec:hover{
    transform: scale(1.4);
}

.seccion{
    width: 100%;
    font-size: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    flex-direction: column;
}

.projects{
    display: flex;
    width: 80%;
    padding: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.proyecto{
    width: 45%;
    border: var(--secondary-color) solid;
    border-radius: 10px;
    min-width: 300px;
    font-size: .5em;
    color: white;
    font-weight: 700;
    padding: 20px;
    box-shadow: -9px 13px 18px -4px rgba(0,0,0,0.66);
    -webkit-box-shadow: -9px 13px 18px -4px rgba(0,0,0,0.66);
    -moz-box-shadow: -9px 13px 18px -4px rgba(0,0,0,0.66);
    transition: .2s ease-in;
    cursor: pointer;
}

a.links{
    color: white;
}

.proyecto:hover{
    transform: scale(1.05);
}
.descripcion{
    font-size: .6em;
    margin-top: 10px;
    font-weight: 400;
    line-height: 1.3;
}

.tec-us{
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-top: 5px;
    gap: 50px;
    flex-wrap: wrap;
}

.tec-t{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;
    font-size: .5em;
    gap: 10px;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 10px;
    /*background-color: #FAC17A;
    color: #0d0d0d;
    opacity: .9;*/
}

.tec-p{
    width: 30px;
}

.informacion{
    padding: 30px;
    width: 80%;
    font-size: .4em;
    line-height: 1.3;
    font-weight: 400;
}

.escuelas{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.esc{
    width: 300px;
    margin-top: 30px;
    border-radius: 10px;
    min-width: 300px ;
    box-shadow:-9px 13px 18px -4px rgba(0,0,0,0.66); ;
    transition: .4s ease-in;
}

.esc:hover{
    transform: scale(1.1);
}

.certificaciones{
    display: flex;
    align-items: center;
    padding: 30px;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.footer{
    width: 100%;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

/*Responsividad */
@media screen and (max-width: 1700px)
{
    .primero{
        height: auto;
    }

    .projects{
        width: 100%;
    }
    .proyecto{
        min-width: none;
        width: 90%;
    }
}

@media screen and (max-width: 950px)
{
    .titulo{
        font-size: 20px;
    }
    .navbar{
        display: none;
    }
    .presentacion{
        font-size: 80px;
    }

    .skills{
        margin-top: 60px;
    }


    
}

@media screen and (max-width: 420px)
{
    .presentacion{
        font-size: 60px;
    }

    .skills{
        margin-top: 0px;
    }

    .proyecto{
        width: 80%;
    }

    .tec-us{
        gap: 10px;
    }

    .seccion{
        font-size: 50px;
    }
}
