@media screen and (max-width:480px){

    /* INDEX */

    .header {
        width: 100%;
        min-height: 2rem;
    
        padding: .3rem;
    
        font-size: .8rem;
        font-weight: 800;
    }
    
    .header .nav {
        text-align: center;
    }
    
    .header .ul {
        padding: .3rem;
    }
    
    .header .li {
        margin: 0 .3rem;
        display: inline-block;
    }
    
    .header .li .a:hover{
        color: turquoise;
    }
    
    .main {
        margin: 2rem 1rem .5rem;
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .seccion {
        width: 100%;
        min-height: 60vh;
        padding: 1rem;
    
        display: flex;
        flex-flow: column wrap;
        justify-content: flex-start;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.452);
    }
    
    .seccion .info {
        font-size: .5rem;
        animation: aparecer1 2s ease 1 both;
    }
    
    .seccion .ul {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
    
        margin: .5rem 0 0;
    
    }
    
    .seccion .ul .li {
        margin: 0 1rem;
    }
    
    .seccion .li .a {
        text-transform: uppercase;
        font-weight: 600;
        border: 1px solid rgb(255, 255, 255, 0.2);
        padding: .3rem;
        border-radius: 50%;
        transition: all.5s ease;
        animation: aparecer1 2s ease 1 backwards;
    }
    
    .seccion .li .a[title="Github"] {
        animation-delay: .5s;
    }
    
    
    .seccion .ul .li .a:hover {
        border-color: white;
        /* color: white; */
    }
    
    .seccion .h2 {
        font-family: var(--tipo-principal);
        font-size: 1rem;
        font-weight: 600;
    
        line-height: .2rem;
        color: rgba(255, 255, 255, 0.89);
    }
    
    .works {
        z-index: 2;
        color: white;
    }
    
    .works .h2 {
        margin: 0 0 1rem;
        color: inherit;
    }
    
    .seccion .h3 {
        font-family: var(--tipo-principal);
        font-size: 1rem;
        padding: .5rem;
        font-style: italic; 
    }
    
    .works .p {
        font-size: .9rem;
        font-weight: 400;
    }
    
    .seccion .grid {
        width: 90%;
        margin: 2rem 0;
        max-width: 40em;
    
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
        gap: 1em;
    
    }
    
    .seccion .article {
        width: 100%;
        background: lightgoldenrodyellow;
        min-height: 10vh;
    
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
        justify-content: center;
    
        position: relative;
        overflow: hidden;
        border-radius: 1em;
    }
    
    .seccion .figure {
        width: 100%;
        background: red;
    }
    
    .seccion .img {
        width: 100%;
        background: lime;
    }
    
    .seccion .h4 {
        width: 100%;
        height: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, .5);
        backdrop-filter: blur(1rem);
    
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
    
        color: white;
        font-size: 1.4em;
        /* text-transform: uppercase; */
        font-style: italic;
        text-align: center;
    
        opacity: 0;
        transition: all .5s ease;
        transform: scale(1.2);
    }
    
    .seccion .article:hover .h4 {
        opacity: 1;
        transform: scale(1);
    
    }
    
    .about {
        z-index: 3;
    }
    
    .about .h2 {
        margin: 0 0 2rem;
    }
    
    .about .p {
        max-width: 65rem;
        text-align: left;
        margin: 0 0 2rem;
        font-size: .8rem;
        letter-spacing: .1rem;
    }
    
    .about .rrss {
        width: 100%;
    
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
    }
    
    .about .li {
        margin: 0 1em;
    }
    
    .about .a {
        border: none !important;
    
    }
    
    .about .svg {
        width: 1.5rem;
        height: 1.5rem;
        border: 0px solid transparent;
    }
    
    .footer {
        text-align: center;
        padding: 2em 0;
        position: relative;
        z-index: 2;
        color: white;
        font-size: .7rem;
        font-weight: 800;
    }
    
    
    
    @keyframes circulo1 {
        from {
            transform: rotate(0deg) scale(2.4);
        }
    
        to {
            transform: rotate(360deg) scale(2.2);
        }
    }
    
    @keyframes aparecer1 {
        from {
            opacity: 0;
            transform: translateY(50%);
        }
    
        to {
            opacity: 1;
            transform: translateY(0%);
        }
    
    }
    
    #cursor {
        width: 5em;
        height: 5em;
        background-color: white;
        position: fixed;
        z-index: 3;
        pointer-events: none;
        border-radius: 50%;
        top: 0;
        left: 0;
        mix-blend-mode: difference;
    }
    
    #cursor.mini{
        transform: scale(0.6);
        transition: all .1s linear;
    }
    
}


@media screen and (max-width:1024px){
        /* INDEX */

        .header {
            width: 100%;
            min-height: 2em;
        
            padding: 1em;
        
            font-size: 1em;
            font-weight: 800;
        }
        
        .header .nav {
            text-align: end;
        }
        
        .header .ul {
            padding: 1em;
        }
        
        .header .li {
            margin: 0 1em;
            display: inline-block;
        }
        
        .header .li .a:hover{
            color: turquoise;
        }
        
        .main {
            margin: 5em 0em 2em;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .seccion {
            width: 100%;
            min-height: 80vh;
            padding: 1em;
        
            display: flex;
            flex-flow: column wrap;
            justify-content: center;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.452);
        }
        
        .seccion .info {
            font-size: 1em;
            animation: aparecer1 2s ease 1 both;
        }
        
        .seccion .ul {
            display: flex;
            flex-flow: row wrap;
            justify-content: center;
            align-items: center;
        
            margin: 1em 0 0;
        
        }
        
        .seccion .ul .li {
            margin: 0 1em;
        }
        
        .seccion .li .a {
            text-transform: uppercase;
            font-weight: 600;
            border: 2px solid rgb(255, 255, 255, 0.2);
            padding: 1em;
            border-radius: 50%;
            transition: all.5s ease;
            animation: aparecer1 2s ease 1 backwards;
        }
        
        .seccion .li .a[title="Github"] {
            animation-delay: .5s;
        }
        
        
        .seccion .ul .li .a:hover {
            border-color: white;
            /* color: white; */
        }
        
        .seccion .h2 {
            font-family: var(--tipo-principal);
            font-size: 3em;
            font-weight: 600;
        
            line-height: 1em;
            color: rgba(255, 255, 255, 0.89);
        }
        
        .works {
            z-index: 2;
            color: white;
        }
        
        .works .h2 {
            margin: 0 0 1em;
            color: inherit;
        }
        
        .seccion .h3 {
            font-family: var(--tipo-principal);
            font-size: 2em;
            padding: 1em;
            font-style: italic; 
        }
        
        .works .p {
            font-size: 1.5em;
            font-weight: 400;
        }
        
        .seccion .grid {
            width: 100%;
            margin: 1em 0;
            max-width: 40em;
        
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
            gap: 1em;
        
        }
        
        .seccion .article {
            width: 100%;
            background: lightgoldenrodyellow;
            min-height: 10vh;
        
            display: flex;
            flex-flow: column nowrap;
            align-items: center;
            justify-content: center;
        
            position: relative;
            overflow: hidden;
            border-radius: 1em;
        }
        
        .seccion .figure {
            width: 100%;
            background: red;
        }
        
        .seccion .img {
            width: 100%;
            background: lime;
        }
        
        .seccion .h4 {
            width: 100%;
            height: 100%;
            position: absolute;
            bottom: 0;
            left: 0;
            background: rgba(0, 0, 0, .5);
            backdrop-filter: blur(1rem);
        
            display: flex;
            flex-flow: row wrap;
            justify-content: center;
            align-items: center;
        
            color: white;
            font-size: 1.4em;
            /* text-transform: uppercase; */
            font-style: italic;
            text-align: center;
        
            opacity: 0;
            transition: all .5s ease;
            transform: scale(1.2);
        }
        
        .seccion .article:hover .h4 {
            opacity: 1;
            transform: scale(1);
        
        }
        
        .about {
            z-index: 3;
        }
        
        .about .h2 {
            margin: 0 0 1em;
        }
        
        .about .p {
            max-width: 40em;
            text-align: left;
            margin: 0 0 2em;
            font-size: 1.2em;
            letter-spacing: .1em;
        }
        
        .about .rrss {
            width: 100%;
        
            display: flex;
            flex-flow: row wrap;
            justify-content: center;
            align-items: center;
        }
        
        .about .li {
            margin: 0 1em;
        }
        
        .about .a {
            border: none !important;
        
        }
        
        .about .svg {
            width: 3em;
            height: 3em;
            border: 0px solid transparent;
        }
        
        .footer {
            text-align: center;
            padding: 2em 0;
            position: relative;
            z-index: 2;
            color: white;
            font-size: 1.3em;
            font-weight: 800;
        }
        
        
        
        @keyframes circulo1 {
            from {
                transform: rotate(0deg) scale(2.4);
            }
        
            to {
                transform: rotate(360deg) scale(2.2);
            }
        }
        
        @keyframes aparecer1 {
            from {
                opacity: 0;
                transform: translateY(50%);
            }
        
            to {
                opacity: 1;
                transform: translateY(0%);
            }
        
        }
        
        #cursor {
            width: 5em;
            height: 5em;
            background-color: white;
            position: fixed;
            z-index: 3;
            pointer-events: none;
            border-radius: 50%;
            top: 0;
            left: 0;
            mix-blend-mode: difference;
        }
        
        #cursor.mini{
            transform: scale(0.6);
            transition: all .1s linear;
        }
        
    }



/* @media screen and (max-width:1328px){
    body{
    }
} */