/*dekstop*/
@media screen and (max-width: 1000px) {
    p {
        font-size: .9rem;
        line-height: 1.8rem;
    }

    .skills-right ul li {
        font-size: .9rem;
    }
}

@media screen and (max-width: 825px) {
    /*burger*/
    .burger {
        display: block;
        cursor: pointer;
    }
    
    /*navigasi*/
    nav {
        position: fixed;
        width: 30%;
        right: 0;
        top: 0;
        height: 50vh;
        flex-direction: column;
        background: rgb(185, 177, 177);
        border-left: 3px solid black;
        border-bottom: 2px solid black;
        border-radius: 0 0 25px 25px;
        z-index: 9;
        transform: translateX(100%);

    }
    
    nav ul {
        height: 100vh;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        padding: 0 0 25rem 0;
    }

    .nav-active {
        transform: translateX(0);
    }


    /*hero*/
    #hero {
        grid-template-columns: 1fr;
        height: fit-content;
        flex-direction: column;
        margin-left: 1rem;
    }
    
    
    .hero-right {
        order: -1;
    }
    
    .hero-right img {
        width: 60%;
        margin-bottom: 2rem;
    }
    
    .hero-left {
        text-align: center;
    }


    
    /*contact-item*/
    .contact-right {
        display: flex;
        flex-direction: column;
        justify-content: center;
        justify-items: center;
    }
        
}

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

}