@media screen and (max-width: 370px) and (min-width: 200px){

    #nav{
        height: 80px;
    }

    .container{
        max-width: 100%;
        padding: 0 0;
        margin-bottom: 2rem;
        position: relative;
        background-color: #F9F9F9;
    }

    .content{
        height: auto;
        max-width: 60rem;
        position: relative;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 4rem;
        padding-top: 8.5rem;
        z-index: 10;
    }


    #hero-main{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: auto;
        gap: 3rem;
        padding: 0 2rem 2rem;
        transition: all ease .5s;
    }

    #hero-pic{
        width: 100%;
        height: 100%;
        background-image: url(./img/IMG_20231204_210537.jpg);
        background-size: cover;
        background-position: contain;
        z-index: 10;
        transition: all ease .5s;
    
    }
    
    #pic{
        width: 18rem;
        height: 18rem;
        position: relative;
        border: 3.5px solid #0f0f0f;
        animation: heroPicAnimation 7s ease-in-out infinite;
        overflow: hidden;
    }
    #hero-text{
        max-width: 29rem;
        height: 20rem;
        text-align: center;
    }

    #heading{
        width: 20rem;
        height: 10rem;
        margin-bottom: 1rem;
        
    }
    #heading > h1{
        font-size: 2.5rem;
        line-height: 3rem;
        position: relative;
        color: #2D2E32;
        font-family: "Poppins2";
        margin-bottom: 1.7rem;
    }
    
    #hero-text > p{
        font-family: roboto;
        font-size: 1.15rem;
        line-height: 1.6rem;
        margin-bottom: 1.2rem;
    }
    #hero-text > span{
        font-size: 2.1rem;
    }

    #heading > #hand{
        width: 4rem;
        height: auto;
        position: relative;
        bottom: 11rem;
        left: 12rem;
        z-index: 10000;
    }
    
#hand > img{
    scale: .3;
}

#skills{
    max-width:60rem ;
    height: auto;
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: start;
    gap: 3rem;
    flex-wrap: nowrap;
} 


#line{
    display: none;
}

#skills > p{
    font-family: roboto;
    font-weight: 700;
    font-size: 1.3rem;
    color: #2D2E32;
    margin-right: 2rem;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid green;
    margin: auto;
}
}