@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
*{
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}
body{
    font-family: 'Roboto', sans-serif;
}
@media screen and (max-width: 1400px) {  }
html{
    font-size: 20px;
}

/* BANNER */
.banner{
    position: fixed;
    width: 30%;
    height: 100%;
}
    .banner span{
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        z-index: 100;
    }
    .banner img{
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: 100%;
    }
.main{
    margin-left: 30%;
    width: 70%;
}
    .trayectoria{
        padding: 5rem;
        width: 100%;
    }
    h1 {
        padding-bottom: 1rem;
    }
        .introduccion{
            margin-bottom: 1rem;
            font-weight: 800;
            font-stretch: extra-expanded;
            color: #444;
        }

    hr{
        margin-bottom: 2rem;
    }
    .membresias{
        padding-left: 2rem;
        margin-bottom: 2rem;
    }  
    li{
        padding: 0.3rem;
        list-style: disc;        
    }

    h3{
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .trabajos{
        padding-left: 2rem;
        margin-bottom: 1rem;
    }
    .trabajos li{
        list-style: square;
    }
    .comentario-final{
        margin-bottom: 1rem;
        font-weight: 800;
        font-stretch: extra-expanded;
        color: #444;
    }

    .volver{
        margin-right: 2rem;
        position: absolute;
        right: 0;
        top: 1rem;
    }


    .btn-secondary{
        color: #fff;
        cursor: pointer;
        font-size: 1.5rem;
        background-color: #333;
        border-radius: 0.2rem;
        border: none;
        box-shadow: 0 0 2px #000;
    }
    .btn-secondary:hover{
        transform: translateY(5%);
        transition-duration: 0.2s;
    }
    .btn a,.btn-secondary a{
        padding: 0.5rem 1rem;
        display: block;
        text-decoration: none;
        color: unset;
        width: 100%;
        height: 100%;
    }

    .footer{
        display: none;
    }

@media screen and (max-width: 800px){

    html,body{
        height: 100%;
        width: 100%;
    }
    .banner{
        position: fixed;
        height: 15%;
        width: 100%;
        top: 0;
        z-index: 100;
    }
        .banner span{
            position: absolute;
            display: block;
            height: 100%;
            width: 100%;
        }
        .banner img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: 0 30% ;
        }
    .main{
        position: relative;
        top: 15%;
        margin-left: unset;
        width: 100%;
    }
    .trayectoria{
        padding: 1rem;
        padding-bottom: 5rem;
    }

    .volver{
        display: none;
    }
    .volver-responsive{
        font-size: 1.2rem;
        width: 80%;
    }
    .footer{
        position: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 4rem;
        width: 100%;
        bottom: 0;
        background-color: #f2994adf;
    }

    
}