@media screen and (min-width:768px){
    
    /*----- Mobile Nav Section -----*/
    .mobile-nav-btn{
        display: none;
    }

    /*----- Desktop Nav Section -----*/

.nav{
    z-index: 100;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
    display: inline;
}
.nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    transition: all 0.3s ease-in-out;
}
.nav-container h2{
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0 5% ;
    font-size: 1rem;
}
.nav-container ul{
    display: flex;
    list-style-type: none;
    align-items: center;
    justify-content: center;
    margin: 0 5%;
}
.nav-container li{
    font-size: 1rem;
}
.nav-container a{
    color: var(--bg);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease-in-out;
}
.nav-container button{
    background-color: transparent;
    border: 1px solid var(--bg);
    color: var(--bg);
    padding: 0.1rem 0.5rem;
    font-size: 1vmax;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}
.nav.nav-active{
    background-color: var(--text);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.nav.nav-active a{
    color: var(--bg);
}
.nav.nav-active button{
    border-color: var(--prim);
    color: var(--text);
}
.nav.nav-active .nav-container{
 padding: 0.2rem 0.5rem;
}
.nav a.active, .nav a:hover{
    color: var(--sec2);
    font-weight: 800;
}

/*-----     Home Section     -----*/

.home-container{
    flex-direction: column-reverse;
}
.home-desktop{
    display: flex;
    flex-direction: column;
}
.home-container img{
    width: 10rem;
    height: 10rem;
}
.home-buttons button{
    font-size: 1.6rem;
}
.home-container h1{
    font-size: 3.6rem;
}
.home-container h2 span{
    font-size: 3.6rem;
}
.home-container h3 span{
    font-size: 3.6rem;
}

 /*-----     About Me Section     -----*/

 .about-me-container h3{
    font-size: 3rem;
 }
 .left-slide h2{
    font-size: 2.4rem;
 }
 .right-slide p{
    font-size: 1.6rem;
 }
 .about-me-box .action-buttons button{
    left: 5%;
    font-size: 1.2rem;
 }
 .right-slide img{
    width: 300px;
 }

 /*----- Skills Section -----*/
 
 .skills-container h2{
    font-size: 3rem;
 }
 .skills-box1 span{
    transform: rotateY(calc(var(--i)*75deg)) translateZ(250px);
 }
 .skills-box2 span{
    transform: rotateY(calc(var(--i)*90deg)) translateZ(200px);
 }
 .skills-box3 span{
    transform: rotateY(calc(var(--i)*90deg)) translateZ(150px);
 }
 .skills-written .skills-frame h2{
    font-size: 2.4rem;
 }
 .skills-written .skills-frame a{
    font-size: 1.6rem;
 }
 .lang-container h2{
    font-size: 2.4rem;
 }
 .skills-written .skills-lang a{
    font-size: 1.6rem;
 }
 .tool-container h2{
    font-size: 2.4rem;
 }
 .tool-list a{
    font-size: 1.6rem;
 }

 /*----- Work Section -----*/

 .work-container h3{
    font-size: 3rem;
 }
 .card{
    width: 70%;
 }
 .sub-heading{
    font-size: 2.8rem;
 }
 .card h2{
    font-size: 2.4rem;
 }
 .card p{
    font-size: 1.2rem;
 }
 .card button{
    font-size: 1.6rem;
    padding: 1rem 2rem;
 }
 .modal-inner h2{
    font-size: 1.6rem;
 }
 .modal-inner p{
    font-size: 1.2rem;
}
.modal-inner .view-code{
    font-size: 1.2rem;
}

/*----- Contact Section -----*/

.contact h2{
    font-size: 3rem;
}
.info-container button{
    font-size: 1.6rem;
}
.contact-info-container i{
    font-size: 2rem;
}
}