/* aqui los media queries */

nav .fas{
    display: none;
}

@media only screen and (max-width: 600px){
    #header {
        background-image: url(../img/I_phone-background.png);
    }
    .header-text{
        margin-top: 10%;
        font-size: 16px;
    }
    .header-text h1{
        font-size: 30px;
    }
    .sub-title h2{
        font-size: 30px;
    }
    nav .fas{
        display: block;
        font-size: 25px;
    }
    nav ul{
        background: var( --color-bg-titulos-suave);
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
    }
    nav ul li{
        display: block;
        margin: 25px;
    }
    nav ul .fas{
        position: absolute;
        top: 25px;
        left: 35px;
        cursor: pointer;
    }
    .about-col-1, .about-col-2{
        flex-basis: 100%;
    }
    .about-col-1{
        margin-bottom: 25px;
    }
    .about-col-2{
        font-size: 14px;
    }
    .coltact-left, .coltact-right{
        flex-basis: 100%;
    }
    .copyright {
        font-size: 14px;
    }

}


