@import url("https://fonts.googleapis.com/css2?family=Electrolize&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");

:root {
    --text-color: black;
    --text-color2: white;
    /* --bkg-color: white; */
    /* --bkg-color: #f6f5f0; */
    --bkg-color:linear-gradient(to right, #d7d2cc 0%, #304352 100%);
    /* --bkg-color: linear-gradient(to right, #e6dada, #274046); */
    --bkg-color2: black;
    --bkg-color3: #DDDCD8;
    --font1: "Electrolize";
    --font2: "Orbitron";
    --darkModeText: white;
    --darkModeBckg: black;
    --darkModeOutLine: white;
    --darkMode-box-shadow: 0 0 13px 3px rgba(0,0,0,0.6);
    --darkModeSun: opacity(1);
    --darkModeMoon: opacity(0);
    --githubImg1: invert(1);
    --restapi: invert(0);
    --express: invert(0);
    --boxshadow: 0px 5px 10px 2px rgba(0,0,0,0.5);
}

*{
    box-sizing: border-box;
}

body {
    font-family: var(--font1);
    margin: 0;
    /* background-color: var(--bkg-color); */
    background-image: var(--bkg-color);
    background: var(--bkg-color);
}
body.dark-theme {
    --text-color: white;
    --text-color2: black;
    /* --bkg-color: black; */
    --bkg-color: linear-gradient(to right, #434343 0%, black 100%);
    /* --bkg-color: linear-gradient(to right, #434343 0%, black 100%); */
    --bkg-color2: white;
    --darkModeText: black;
    --darkModeBckg: rgb(219, 224, 113);
    --darkModeOutLine: rgb(184, 189, 111);
    --darkMode-box-shadow: 0 0 12px 3px rgba(255,255,100,0.6);
    --darkModeSun: opacity(0);
    --darkModeMoon: opacity(1);
    --githubImg1: invert(0);
    --restapi: invert(1);
    --express: invert(1);
    --boxshadow: 0px 5px 10px 2px rgba(255,255,255,0.5);
}


/* 






    NAV CSS Portion






*/

.nav {
    display: flex;
    align-items: center;
    position: fixed;
    background-color: rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    color: var(--text-color);
    width: 100%;
    height: 3.5rem;
    padding: 0 3vw;
    min-width: 20rem;
    max-width: 100%;
    z-index: 100;
}
.nav h1 {
    flex-grow: 1;
    /* below is one option */
    /* position: relative;
    left: 30rem; */
    background: linear-gradient(45deg, #39FF14, #2BFD6A, #1DFBA1, #0FE9D8, #00D7FF);
    background-size: 17rem;
    background-repeat: no-repeat;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav .darkmode {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 2rem;
    font-family: var(--font1);
    font-size: 1.1rem;
    color: var(--darkModeText);
    border-radius: 70px;
    border: none;
    border-color: var(--darkModeOutLine);
    border-width: .3rem;
    background-color: var(--darkModeBckg);
    box-shadow: var(--darkMode-box-shadow);
    outline: none;
    cursor: pointer;
    z-index: 100;
    /* below is one option */
    /* left: 4rem; */
}
.nav .darkmode:active {
    transform: scale(0.9);
}
.nav .darkmode #sun {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    left: 0.4rem;
    filter: var(--darkModeSun);
}
.nav .darkmode #moon {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    right: 0.6rem;
    filter: var(--darkModeMoon);
}
.nav .menu {
    max-width: 20vw;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav .menu .list {
    display: flex;
    gap: 10%;
    font-size: 1.3rem;
    width: 30rem;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none; 
    -ms-user-select: none;
    user-select: none;
    /* below is one option */
    /* position: relative;
    right: 35rem; */
}
.nav .menu .list .home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
} 
.nav .menu .list .skills {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
}
.nav .menu .list .projects {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 1.8rem;
}
.nav .menu .list .about {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
}

.nav .menu .list .home:active {
    transform: scale(0.9);
}
.nav .menu .list .home:hover {
    transform: scale(1.2);
    color: #B0F1FF;
    box-shadow: var(--boxshadow);
    border-radius: 8px;
    width: 5rem;
}
.nav .menu .list .skills:active {
    transform: scale(0.9);
}
.nav .menu .list .skills:hover {
    transform: scale(1.2);
    color: #B0F1FF;
    box-shadow: var(--boxshadow);
    border-radius: 8px;
    width: 5rem;
}
.nav .menu .list .projects:active {
    transform: scale(0.9);
}
.nav .menu .list .projects:hover {
    transform: scale(1.2);
    color: #B0F1FF;
    box-shadow: var(--boxshadow);
    border-radius: 8px;
    width: 7rem;
}
.nav .menu .list .about:active {
    transform: scale(0.9);
}
.nav .menu .list .about:hover {
    transform: scale(1.2);
    color: #B0F1FF;
    box-shadow: var(--boxshadow);
    border-radius: 8px;
    width: 5rem;
}




/* 






   Home Section CSS Portion






*/


.sections h1 {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    top: 1rem;
    padding: 1.3rem 0;
    font-family: var(--font2);
    font-size: 3rem;
    color: var(--text-color);
}
.sections .homeSection {
    width: 100%;
    height: 100vh;
    margin-top: 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 2rem;
    padding: 0 8rem;
    overflow: hidden;
    /* background: left 100%/20% 100% no-repeat url(https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExdm5ndGdsbHpzcW5tcnNpbWZqd2E0a3FvczF3OXNmMG81ZHVwaHFkbyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/8w61HSu6xQjoa2NzKN/giphy.gif), right 100%/20% 100% no-repeat url(https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExdm5ndGdsbHpzcW5tcnNpbWZqd2E0a3FvczF3OXNmMG81ZHVwaHFkbyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/8w61HSu6xQjoa2NzKN/giphy.gif); */
    background: center/contain repeat url(https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExdm5ndGdsbHpzcW5tcnNpbWZqd2E0a3FvczF3OXNmMG81ZHVwaHFkbyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/8w61HSu6xQjoa2NzKN/giphy.gif);
    /* background: center/50% no-repeat url(https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExMXV1eDFnZmNmeGpiNHd3bHl0M3hxbjJjOTdzZDA5NnZqcGRnMWdnbiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/WFjcyy95rUXPXo1k43/giphy.gif); */
    /* background: center/50% no-repeat url(https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExMnVrZmpsMDcwMHBwbTEyYnB1bTdnZndkOHBvbnZ4ZW9zMDIzdGVlNyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/8mz9YJidZMGXndg6eH/giphy.gif); */
    /* background: center/90% no-repeat url(https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExN2VlMWpxMDlzaWxlcXpocnRqdnFjYzA4NHVyZ2N6em8zZm5ydmE2biZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/3oKIPeK7hRcDBwVFJu/giphy.gif); */
    /* background: center/50% no-repeat url(https://media1.giphy.com/media/v1.Y2lkPTc5MGI3NjExMDZrdnk1Y3NkM2hycmVqZTBnMjd1aHZoMzZ1N29pcGtwcGQ1ZW1oYSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/qBJkWD0PtAEdJPp7Xy/giphy.gif); */
    /* background: left/50% no-repeat url(), right/50% no-repeat url(); */
}
.sections .homeSection .homeTitle {
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    top: 12rem;
    margin-left: 19rem;
    font-size: 90px;
    font-weight: bold;
    margin-top: 9rem;
    margin-right: 45rem;
    user-select: none;
}
.sections .homeSection .homeTitle2 {
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    top: 12rem;
    margin-left: 19rem;
    font-size: 90px;
    font-weight: bold;
    margin-top: 9rem;
    background: linear-gradient(45deg, #39FF14, #2BFD6A, #1DFBA1, #0FE9D8, #00D7FF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
}
.sections .homeSection .homeTitle3 {
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    top: 19rem;
    font-size: 60px;
    font-weight: bold;
    margin-top: 9rem;
    user-select: none;
}
.sections .homeSection .links {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    margin-left: 11rem;
    user-select: none;
}
.sections .homeSection .links .githubImg {
    width: 7rem;
    cursor: pointer;
}
.sections .homeSection .links .githubImg:hover{
    transform: scale(1.2);
}
.sections .homeSection .links .emailLink {
    font-size: 40px;
    margin: 0 1rem;
    background: transparent;
    cursor: pointer;
}
.sections .homeSection .links .emailLink:hover {
    transform: scale(1.2);
}
.sections .homeSection .homeText {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 2rem;
    padding: 1rem 8rem;
    flex-wrap: wrap;
}


/* 






    Skills Sections CSS Portion






*/

.sections .skillsSection {
    width: 100%;
    height: 100vh;
    margin-top: 0rem;
    overflow: hidden;
}
.sections .skillsSection .skillsCard {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}
.sections .skillsSection .skillBox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95rem;
    height: 60rem;
    border-radius: 20px;
    box-shadow: var(--boxshadow);
}
.sections .skillsSection .skillBox .skills {
    display: flex;
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5%;
    justify-content: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none; 
    -ms-user-select: none;
    user-select: none;
}
.sections .skillsSection .htmlBox {
    display: flex;
    justify-content: center;
    align-items:center;
    position: relative;
    width: 14rem;
    height: 4rem;
    border-radius: 15px;
    margin: 1rem 0rem;
    box-shadow: var(--boxshadow);
    cursor: pointer;
}
.sections .skillsSection .htmlBox:hover {
    transform: scale(1.2);
    /* animation: slide 1.6s ease-in-out; */
    animation: shake .4s ease;
}
@keyframes slide {
    0% {
        left: 0rem
    }
    25% {
        left: -4rem
    }
    50% {
        left: 0rem;
    }
    75% {
        left: 4rem;
    }
    100% {
        left: 0rem;
    }
}
.sections .skillsSection .htmlBox .logo {
    width: 9rem;
    display: flex;
    position: relative;
    top: 0rem;
    right: 2.6rem;
    z-index: 100;
}
.sections .skillsSection .htmlBox .html {
    display: flex;
    justify-content: center;
    align-items:center;
    position: relative;
    font-size: 22px;
    right: 3rem;
    color: var(--text-color);
}
.sections .skillsSection .jsBox {
    display: flex;
    justify-content: center;
    align-items:center;
    position: relative;
    width: 14rem;
    height: 4rem;
    border-radius: 15px;
    margin: 1rem 0rem;
    box-shadow: var(--boxshadow);
    cursor: pointer;
    z-index: 100;
}
.sections .skillsSection .jsBox:hover {
    transform: scale(1.2);
    /* animation: bounce 5s ease-in-out; */
    animation: shake .4s ease;
}
@keyframes bounce {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    25% {
        transform: scale(1.2);
        opacity: 1;
    }
    50% {
        transform: scale(0.85);
    }
    100% {
        transform: scale(1);
    }
}
.sections .skillsSection .jsBox .logo {
    width: 2.5rem;
    display: flex;
    position: relative;
    top: 0rem;
    right: 0.5rem;
    z-index: 100;
}
.sections .skillsSection .jsBox .js {
    display: flex;
    justify-content: center;
    align-items:center;
    position: relative;
    font-size: 22px;
    left: 0.5rem;
    color: var(--text-color);
}
.sections .skillsSection .cssBox {
    display: flex;
    justify-content: center;
    align-items:center;
    position: relative;
    width: 14rem;
    height: 4rem;
    border-radius: 15px;
    margin: 1rem 0rem;
    box-shadow: var(--boxshadow);
    cursor: pointer;
}
.sections .skillsSection .cssBox:hover {
    transform: scale(1.2);
    /* animation: spin 2s linear; */
    animation: shake .4s ease;
}
@keyframes spin {
    0% {
        transform:rotate(0deg);
        
    }
    25% {
        transform:rotate(90deg);
    }
    50% {
        transform:rotate(180deg);
    }
    75% {
        transform:rotate(270deg);
    }
    100% {
        transform:rotate(360deg);
    }
}
.sections .skillsSection .cssBox .logo {
    width: 2.5rem;
    display: flex;
    position: relative;
    top: 0rem;
    right: 2.5rem;
    z-index: 100;
}
.sections .skillsSection .cssBox .css {
    display: flex;
    justify-content: center;
    align-items:center;
    position: relative;
    font-size: 22px;
    left: 0rem;
    color: var(--text-color);
}
.sections .skillsSection .pythonBox {
    display: flex;
    justify-content: center;
    align-items:center;
    position: relative;
    width: 14rem;
    height: 4rem;
    border-radius: 15px;
    margin: 1rem 0rem;
    box-shadow: var(--boxshadow);
    cursor: pointer;
    z-index: 100;
}
.sections .skillsSection .pythonBox:hover {
    transform: scale(1.2);
    /* animation: slideUp 1s ease; */
    animation: shake .4s ease;
}
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(-6rem);
    }
    50% {
        opacity: 0.5;
        transform: translateY(1rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.sections .skillsSection .pythonBox .logo {
    width: 2.5rem;
    display: flex;
    position: relative;
    top: 0rem;
    right: 2rem;
    z-index: 100;
}
.sections .skillsSection .pythonBox .python {
    display: flex;
    justify-content: center;
    align-items:center;
    position: relative;
    font-size: 22px;
    left: 0rem;
    color: var(--text-color);
}
.sections .skillsSection .cppBox {
    display: flex;
    justify-content: center;
    align-items:center;
    position: relative;
    width: 14rem;
    height: 4rem;
    border-radius: 15px;
    margin: 1rem 0rem;
    box-shadow: var(--boxshadow);
    cursor: pointer;
}
.sections .skillsSection .cppBox:hover {
    transform: scale(1.2);
    animation: shake .4s ease;
}
@keyframes shake {
    0% {
        transform: translateY(0rem) rotate(20deg);
    }
    50% {
        transform: translateY(-1rem);
    }
    100% {
        transform: translateY(0rem) rotate(-20deg);
    }
}
.sections .skillsSection .cppBox .logo {
    width: 2.5rem;
    display: flex;
    position: relative;
    top: 0rem;
    right: 2.5rem;
    z-index: 100;
}
.sections .skillsSection .cppBox .cpp {
    display: flex;
    justify-content: center;
    align-items:center;
    position: relative;
    font-size: 22px;
    left: 0rem;
    color: var(--text-color);
}
.sections .skillsSection .mongoDBBox {
    display: flex;
    justify-content: center;
    align-items:center;
    position: relative;
    width: 14rem;
    height: 4rem;
    border-radius: 15px;
    margin: 1rem 0rem;
    box-shadow: var(--boxshadow);
    cursor: pointer;
}
.sections .skillsSection .mongoDBBox:hover {
    transform: scale(1.2);
    animation: shake .4s ease;
}
.sections .skillsSection .mongoDBBox .logo {
    width: 2.8rem;
    display: flex;
    position: relative;
    top: 0rem;
    right: 1rem;
    z-index: 100;
}
.sections .skillsSection .mongoDBBox .mongodb {
    display: flex;
    justify-content: center;
    align-items:center;
    position: relative;
    font-size: 22px;
    left: 0rem;
    color: var(--text-color);
}
.sections .skillsSection .restapiBox {
    display: flex;
    justify-content: center;
    align-items:center;
    position: relative;
    width: 14rem;
    height: 4rem;
    border-radius: 15px;
    margin: 1rem 0rem;
    box-shadow: var(--boxshadow);
    cursor: pointer;
}
.sections .skillsSection .restapiBox:hover {
    transform: scale(1.2);
    animation: shake .4s ease;
}
.sections .skillsSection .restapiBox .logo {
    width: 7rem;
    display: flex;
    position: relative;
    top: 0rem;
    right: 1.2rem;
    z-index: 100;
    filter: var(--restapi);
}
.sections .skillsSection .restapiBox .restapi {
    display: flex;
    justify-content: center;
    align-items:center;
    position: relative;
    font-size: 22px;
    right: 1.6rem;
    color: var(--text-color);
}
.sections .skillsSection .nodejsBox {
    display: flex;
    justify-content: center;
    align-items:center;
    position: relative;
    width: 14rem;
    height: 4rem;
    border-radius: 15px;
    margin: 1rem 0rem;
    box-shadow: var(--boxshadow);
    cursor: pointer;
}
.sections .skillsSection .nodejsBox:hover {
    transform: scale(1.2);
    animation: shake .4s ease;
}
.sections .skillsSection .nodejsBox .logo {
    width: 4.3rem;
    display: flex;
    position: relative;
    top: 0rem;
    right: 2.2rem;
    z-index: 100;
}
.sections .skillsSection .nodejsBox .nodejs {
    display: flex;
    justify-content: center;
    align-items:center;
    position: relative;
    font-size: 22px;
    right: 1.6rem;
    color: var(--text-color);
}
.sections .skillsSection .expressBox {
    display: flex;
    justify-content: center;
    align-items:center;
    position: relative;
    width: 14rem;
    height: 4rem;
    border-radius: 15px;
    margin: 6rem 0rem;
    box-shadow: var(--boxshadow);
    cursor: pointer;
}
.sections .skillsSection .expressBox:hover {
    transform: scale(1.2);
    animation: shake .4s ease;
}
.sections .skillsSection .expressBox .logo {
    width: 2.7rem;
    display: flex;
    position: relative;
    top: 0rem;
    right: 2rem;
    z-index: 100;
    filter: var(--express);
}
.sections .skillsSection .expressBox .express {
    display: flex;
    justify-content: center;
    align-items:center;
    position: relative;
    font-size: 22px;
    right: 0.5rem;
    color: var(--text-color);
}
.sections .skillsText {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 2rem;
    padding: 15rem 8rem;
    margin: 0 20rem 0 20rem;
    flex-wrap: wrap;
}


/* 






    Projects Sections CSS Portion






*/


.sections .projectsSection {
    width: 100%;
    height: 140vh;
    margin-top: 0rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 20rem;
}
.sections .projectsSection .project1 {
    display: flex;
    position: relative;
    margin: 0 20rem 0 20rem;
    flex-wrap: wrap;
    gap: 3rem;
}
.sections .projectsSection .project1 .imgTest {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 800px;
    border-radius: 20px;
}
.sections .projectsSection .project1 .p1Text{
    display: flex;
    position: relative;
    top: 26rem;
    right: 31rem;
    font-size: 20px;
}
.sections .projectsSection .project2 .imgTest2 {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 800px;
    left: 75rem;
    bottom: 25.7rem;
    border-radius: 20px;
}
.sections .projectsSection .project2 .p2Text{
    display: flex;
    position: relative;
    bottom: 25.5rem;
    left: 97rem;
    font-size: 20px;
}
.sections .projectsSection .project1 .vid1 {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 800px;
}
.sections .projectsSection .project1 .vid2 {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 800px;
}
.sections .projectsSection .project1 .vid3 {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 800px;
}
.sections .projectsSection .links {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    margin-top: 51rem;
}
.sections .projectsSection .links .githubBtn {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: none;
    box-shadow: var(--boxshadow);
    width: 19rem;
    height: 4rem;
    font-size: 22px;
    font-family: inherit;
    font-weight: bold;
    color: black;
    background-color: var(--bkg-color3);
    cursor: pointer;
}
.sections .projectsSection .links .githubBtn:hover{
    transform: scale(1.2);
}
.sections .projectsSection .links .githubBtn:active {
    transform: scale(0.9);
}
.sections .projectsSection .links .githubImg2 {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 5rem;
    z-index: 100;
    filter: invert(0);
}
.sections .projectsText {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--text-color);
    font-size: 2rem;
    padding: 5rem 15rem;
    margin: 0 20rem 0 20rem;
    flex-wrap: wrap;
    text-align: center;
}


.card {
    position: absolute;
    overflow: hidden;
    top: 30rem;
    left: 4rem;
    background-color: var(--bkg-color2);
    width: 43.75rem;
    height: 28.75rem;
    margin: 1rem;
    margin-left: 5rem;
    border-radius: 15px;
    box-shadow: var(--boxshadow);
    transition: height 0.3s ease;
}
.card:hover{
    height: 38.125rem;
}
.card:active{
    overflow: visible;
}
.imageContainer {
    width: 700px;
    overflow: hidden;
    cursor: pointer;
}
.images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.images .img1 {
    width: 700px;
    height: 400px;
}
.images .img2 {
    width: 700px;
    height: 400px;
}
.images .img3 {
    width: 700px;
    height: 400px;
}
.images .img4 {
    width: 700px;
    height: 400px;
}
.images .img5 {
    width: 700px;
    height: 400px;
}
.card .img1:hover {
    transform: scale(1.03);
}
.card .img2:hover {
    transform: scale(1.03);
}
.buttonsContainer {
    display: flex;
    justify-content: center;
    align-items: center;
}
.card .next {
    position: relative;
    border: none;
    width: 4rem;
    background-color: var(--bkg-color3);
    border-radius: 2px;
    font-family: inherit;
    font-size: 18px;
    top: 1.3rem;
    left: 5rem;
    cursor: pointer;
    z-index: 100;
}
.card .next:hover {
    transform: scale(1.2);
}
.card .next:active{
    transform: scale(0.9);
}
.card .prev {
    position: relative;
    border: none;
    width: 4rem;
    background-color: var(--bkg-color3);
    border-radius: 2px;
    font-family: inherit;
    font-size: 18px;
    top: 1.3rem;
    right: 5rem;
    cursor: pointer;
    z-index: 100;
}
.card .prev:hover {
    transform: scale(1.2);
}
.card .prev:active{
    transform: scale(0.9);
}
.card .description {
    position: relative;
    font-size: 22px;
    margin: 2rem;
    margin-bottom: 0rem;
    bottom: 3rem;
    color: var(--text-color2);
}
.card .githubImg {
    position: relative;
    width: 5rem;
    bottom: 4rem;
    left: 38.4rem;
    filter: var(--githubImg1);
}
.card .githubImg:hover{
    transform: scale(1.2);
}
.card .githubImg:active {
    transform: scale(0.9);
}
.card h3 {
    position: relative;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    left: 2rem;
    bottom: 2rem;
    color: var(--text-color2);
}
.overlay {
    position: fixed;
    justify-content: center;
    top: 9rem;
    left: 34rem;
    display: none;
    z-index: 999;
    background-color: rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    width: 78rem;
    height: 42rem;
}
.overlay2 {
    position: fixed;
    justify-content: center;
    top: 9rem;
    left: 34rem;
    display: none;
    z-index: 999;
    background-color: rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    width: 78rem;
    height: 42rem;
}
.overlay3 {
    position: fixed;
    justify-content: center;
    top: 9rem;
    left: 34rem;
    display: none;
    z-index: 999;
    background-color: rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    width: 78rem;
    height: 42rem;
}
.overlay4 {
    position: fixed;
    justify-content: center;
    top: 9rem;
    left: 34rem;
    display: none;
    z-index: 999;
    background-color: rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    width: 78rem;
    height: 42rem;
}
.overlay5 {
    position: fixed;
    justify-content: center;
    top: 9rem;
    left: 34rem;
    display: none;
    z-index: 999;
    background-color: rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    width: 78rem;
    height: 42rem;
}
.zoomed {
    display: flex;
    position: relative;
    justify-content: center;
    padding-left: 2rem;
    transform: scale(0.90);
    z-index: 1000;
}
.closeBtn {
    display: flex;
    position: relative;
    font-size: 2rem;
    right: 4rem;
    bottom: -0.4rem;
    background: none;
    border: none;
    z-index: 10000;
    color: var(--text-color);
    cursor: pointer;
}
.closeBtn:hover {
    background-color: red;
    height: 2rem;
}
.card2 {
    position: absolute;
    overflow: hidden;
    top: 30rem;
    left: 53rem;
    background-color: var(--bkg-color2);
    width: 43.75rem;
    height: 28.75rem;
    margin: 1rem;
    margin-left: 5rem;
    border-radius: 15px;
    box-shadow: var(--boxshadow);
    transition: height 0.3s ease;
}
.card2:hover{
    height: 38.125rem;
}
.card2:active{
    overflow: visible;
}
.card2 .imageContainer {
    width: 700px;
    overflow: hidden;
    cursor: pointer;
}
.card2 .images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.card2 .img1 {
    width: 700px;
    height: 400px;
}
.card2 .img2 {
    width: 700px;
    height: 400px;
}
.card2 .next {
    position: relative;
    border: none;
    width: 4rem;
    background-color: var(--bkg-color3);
    border-radius: 2px;
    font-family: inherit;
    font-size: 18px;
    top: 1.3rem;
    left: 5rem;
    cursor: pointer;
    z-index: 100;
}
.card2 .next:hover {
    transform: scale(1.2);
}
.card2 .next:active{
    transform: scale(0.9);
}
.card2 .prev {
    position: relative;
    border: none;
    width: 4rem;
    background-color: var(--bkg-color3);
    border-radius: 2px;
    font-family: inherit;
    font-size: 18px;
    top: 1.3rem;
    right: 5rem;
    cursor: pointer;
    z-index: 100;
}
.card2 .prev:hover {
    transform: scale(1.2);
}
.card2 .prev:active{
    transform: scale(0.9);
}
.card2 .description {
    position: relative;
    font-size: 22px;
    margin: 2rem;
    margin-bottom: 0rem;
    bottom: 3rem;
    color: var(--text-color2);
}
.card2 h3 {
    position: relative;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    left: 2rem;
    bottom: 2rem;
    color: var(--text-color2);
}
.card2 .githubImg {
    position: relative;
    width: 5rem;
    bottom: 4rem;
    left: 38.4rem;
    filter: var(--githubImg1);
}
.card2 .githubImg:hover{
    transform: scale(1.2);
}
.card2 .githubImg:active {
    transform: scale(0.9);
}
.card3 {
    position: absolute;
    overflow: hidden;
    top: 30rem;
    left: 102rem;
    background-color: var(--bkg-color2);
    width: 43.75rem;
    height: 28.75rem;
    margin: 1rem;
    margin-left: 5rem;
    border-radius: 15px;
    box-shadow: var(--boxshadow);
    transition: height 0.3s ease;
}
.card3:hover{
    height: 38.125rem;
}
.card3:active{
    overflow: visible;
}
.card3 .imageContainer {
    width: 700px;
    overflow: hidden;
    cursor: pointer;
}
.card3 .images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.card3 .img1 {
    width: 700px;
    height: 400px;
}
.card3 .img2 {
    width: 700px;
    height: 400px;
}
.card3 .next {
    position: relative;
    border: none;
    width: 4rem;
    background-color: var(--bkg-color3);
    border-radius: 2px;
    font-family: inherit;
    font-size: 18px;
    top: 1.3rem;
    left: 5rem;
    cursor: pointer;
    z-index: 100;
}
.card3 .next:hover {
    transform: scale(1.2);
}
.card3 .next:active{
    transform: scale(0.9);
}
.card3 .prev {
    position: relative;
    border: none;
    width: 4rem;
    background-color: var(--bkg-color3);
    border-radius: 2px;
    font-family: inherit;
    font-size: 18px;
    top: 1.3rem;
    right: 5rem;
    cursor: pointer;
    z-index: 100;
}
.card3 .prev:hover {
    transform: scale(1.2);
}
.card3 .prev:active{
    transform: scale(0.9);
}
.card3 .description {
    position: relative;
    font-size: 22px;
    margin: 2rem;
    margin-bottom: 0rem;
    bottom: 3rem;
    color: var(--text-color2);
}
.card3 .githubImg {
    position: relative;
    width: 5rem;
    bottom: 4rem;
    left: 38.4rem;
    filter: var(--githubImg1)
}
.card3 .githubImg:hover{
    transform: scale(1.2);
}
.card3 .githubImg:active {
    transform: scale(0.9);
}
.card3 h3 {
    position: relative;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    left: 2rem;
    bottom: 2rem;
    color: var(--text-color2);
}
.card3 .overlay {
    position: fixed;
    justify-content: center;
    top: 9rem;
    left: 34rem;
    display: none;
    z-index: 999;
    background-color: rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    width: 78rem;
    height: 42rem;
}
.card3 .overlay2 {
    position: fixed;
    justify-content: center;
    top: 9rem;
    left: 34rem;
    display: none;
    z-index: 999;
    background-color: rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    width: 78rem;
    height: 42rem;
}
.card3 .zoomed {
    display: flex;
    position: relative;
    justify-content: center;
    padding-left: 2rem;
    transform: scale(0.90);
    z-index: 1000;
}
.card3 .closeBtn {
    display: flex;
    position: relative;
    font-size: 2rem;
    right: 4rem;
    bottom: -0.4rem;
    background: none;
    border: none;
    z-index: 10000;
    color: var(--text-color);
    cursor: pointer;
}
.card3 .closeBtn:hover {
    background-color: red;
    height: 2rem;
}


/* 






    About Sections CSS Portion






*/

.sections .aboutSection {
    width: 100%;
    height: 100vh;
    margin-top: 0rem;
    overflow: hidden;
}
.sections .aboutText {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--text-color);
    font-size: 2rem;
    padding: 15rem 8rem;
    margin: 0 20rem 0 20rem;
    bottom: 5rem;
    flex-wrap: wrap;
    text-align:center;
}
.sections .resumeLink {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--text-color);
    font-size: 2rem;
    bottom: 5rem;
    cursor: pointer;
    z-index: 100;
    gap: 1rem;
}
.sections .resumeLink .resumeBtn {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 16rem;
    height: 2.2rem;
    font-family: inherit;
    font-size: 25px;
    font-weight: bold;
    color: black;
    border-radius: 10px;
    border: none;
    box-shadow: var(--boxshadow);
    background-color: var(--bkg-color3);
    gap: 1rem;
    cursor: pointer;
}
.sections .resumeLink .resumeBtn i {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}
.sections .resumeLink .resumeBtn:hover {
    transform: scale(1.1);
}
.sections .resumeLink .resumeBtn:active {
    transform: scale(0.9);
}





/* 






    @Media CSS Portion






*/



@media (max-width: 1920px) and (max-height: 954px){
    .nav .menu {
        max-width: 20vw;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: auto;
    }
    .sections .homeSection .links {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        top: 9rem;
    }
    .sections .homeSection .links .githubImg {
        width: 7rem;
        cursor: pointer;
    }
    .sections .homeSection .links .githubImg:hover{
        transform: scale(1.2);
    }
    .sections .homeSection .links .emailLink {
        font-size: 40px;
        margin: 0 1rem;
        background: transparent;
        cursor: pointer;
    }
    .sections .skillsSection .skillBox {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 95rem;
        height: 40rem;
        border-radius: 20px;
        box-shadow: var(--boxshadow);
    }

    .sections .projectsSection {
        width: 100%;
        height: 140vh;
        margin-top: 0rem;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        position: relative;
        min-height: 20rem;
    }
    .sections .projectsText {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-color);
        font-size: 2rem;
        padding: 5rem 8rem;
        margin: 0 10rem 0 10rem;
        flex-wrap: wrap;
        top: -5rem;
        position: relative;
    }
    .sections .projectsSection .project1 {
        display: flex;
        position: relative;
        margin: 0 20rem 0 20rem;
        flex-wrap: wrap;
        gap: 3rem;
    }
    .sections .projectsSection .project1 .vid1 {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 600px;
    }
    .sections .projectsSection .project1 .vid2 {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 600px;
    }
    .sections .projectsSection .project1 .vid3 {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 600px;
    }
    .sections .projectsSection .links {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        margin-top: 3rem;
        top: 23rem;
    }
    .sections .projectsSection .links .githubBtn {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        top: 0rem;
    }
    .sections .projectsSection .links .githubImg2 {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 5rem;
        cursor: pointer;
    }


    .sections .aboutSection {
        width: 100%;
        height: 100vh;
        margin-top: 0rem;
        overflow: hidden;
    }
    .sections .aboutText {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-color);
        font-size: 2rem;
        margin: -3rem 10rem 0 10rem;
        flex-wrap: wrap;
    }




    .card {
        position: absolute;
        overflow: hidden;
        top: 20rem;
        left: 2rem;
        background-color: var(--bkg-color2);
        width: 500px;
        height: 370px;
        margin: 1rem;
        margin-left: 5rem;
        border-radius: 15px;
        box-shadow: var(--boxshadow);
        transition: height 0.3s ease;
    }
    .card:hover{
        height: 490px;
    }
    .imageContainer {
        width: 500px;
        overflow: hidden;
        cursor: pointer;
    }
    .card .img1 {
        width: 500px;
        height: 320px;
    }
    .card .img2 {
        width: 500px;
        height: 320px;
    }
    .card .img3 {
        width: 500px;
        height: 320px;
    }
    .card .img4 {
        width: 500px;
        height: 320px;
    }
    .card .img5 {
        width: 500px;
        height: 320px;
    }
    .card .img1:active {
        transform: scale(2);
        bottom: 10%;
        z-index: 101;
    }
    .card .description {
        position: relative;
        font-size: 16px;
        margin: 2rem;
        margin-bottom: 0rem;
        bottom: 3rem;
        color: var(--text-color2);
    }
    .card .githubImg {
        position: relative;
        width: 80px;
        bottom: 4.5rem;
        left: 26rem;
        filter: var(--githubImg1)
    }
    .card h3 {
        position: relative;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        left: 2rem;
        bottom: 2rem;
        color: var(--text-color2);
    }
    .buttonsContainer {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        bottom: 0.6rem;
        left: 2rem;
    }
    .card .next {
        position: relative;
        border: none;
        width: 4rem;
        top: 1.3rem;
        left: 5rem;
    }
    .overlay {
        position: fixed;
        justify-content: center;
        top: 8rem;
        left: 20rem;
        display: none;
        width: 78rem;
        height: 42rem;
    }
    .overlay2 {
        position: fixed;
        justify-content: center;
        top: 8rem;
        left: 20rem;
        display: none;
        width: 78rem;
        height: 42rem;
    }
    .overlay3 {
        position: fixed;
        justify-content: center;
        top: 8rem;
        left: 20rem;
        display: none;
        width: 78rem;
        height: 42rem;
    }
    .overlay4 {
        position: fixed;
        justify-content: center;
        top: 8rem;
        left: 20rem;
        display: none;
        width: 78rem;
        height: 42rem;
    }
    .overlay5 {
        position: fixed;
        justify-content: center;
        top: 8rem;
        left: 20rem;
        display: none;
        width: 78rem;
        height: 42rem;
    }
    .card2 {
        position: absolute;
        overflow: hidden;
        top: 20rem;
        left: 40rem;
        background-color: var(--bkg-color2);
        width: 500px;
        height: 370px;
        margin: 1rem;
        margin-left: 5rem;
        border-radius: 15px;
        box-shadow: var(--boxshadow);
        transition: height 0.3s ease;
    }
    .card2:hover{
        height: 490px;
    }
    .card2:active{
        overflow: visible;
    }
    .card2 .imageContainer {
        width: 500px;
        overflow: hidden;
        cursor: pointer;
    }
    .card2 .images .img1 {
        width: 500px;
        height: 320px;
    }
    .card2 .images .img2 {
        width: 500px;
        height: 320px;
    }
    .card2 .images .img3 {
        width: 500px;
        height: 320px;
    }
    .card2 .description {
        position: relative;
        font-size: 16px;
        margin: 2rem;
        margin-bottom: 0rem;
        bottom: 3rem;
        color: var(--text-color2);
    }
    .card2 h3 {
        position: relative;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        left: 2rem;
        bottom: 2rem;
        color: var(--text-color2);
    }
    .card2 .githubImg {
        position: relative;
        width: 80px;
        bottom: 4.5rem;
        left: 26rem;
        filter: var(--githubImg1);
    }
    .card2 .buttonsContainer {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        bottom: 0.6rem;
        left: 2rem;
    }
    .card3 {
        position: absolute;
        overflow: hidden;
        top: 20rem;
        left: 78rem;
        background-color: var(--bkg-color2);
        width: 500px;
        height: 370px;
        margin: 1rem;
        margin-left: 5rem;
        border-radius: 15px;
        box-shadow: var(--boxshadow);
        transition: height 0.3s ease;
    }
    .card3:hover{
        height: 490px;
    }
    .card3 .imageContainer {
        width: 500px;
        overflow: hidden;
        cursor: pointer;
    }
    .card3 .img1 {
        width: 500px;
        height: 320px;
    }
    .card3 .img2 {
        width: 500px;
        height: 320px;
    }
    .card3 .description {
        position: relative;
        font-size: 16px;
        margin: 2rem;
        margin-bottom: 0rem;
        bottom: 3rem;
        color: var(--text-color2);
    }
    .card3 .githubImg {
        position: relative;
        width: 80px;
        bottom: 4.5rem;
        left: 26rem;
        filter: var(--githubImg1)
    }
    .card3 h3 {
        position: relative;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        left: 2rem;
        bottom: 2rem;
        color: var(--text-color2);
    }
    .card3 .overlay {
        position: fixed;
        justify-content: center;
        top: 8rem;
        left: 20rem;
        display: none;
        width: 78rem;
        height: 42rem;
    }
    .card3 .overlay2 {
        position: fixed;
        justify-content: center;
        top: 8rem;
        left: 20rem;
        display: none;
        width: 78rem;
        height: 42rem;
    }
}

@media (max-width: 1400px) and (min-height:650px){
    .nav {
        display: flex;
        flex-direction: column;
        height: 7%;
    }
    .nav h1 {
        display: flex;
        position: relative;
        bottom: 1rem;
        right: 33rem;
    }   
    .nav .menu {
        width: 100%;
        justify-content: center;
        position: relative;
        bottom: 7rem;
        left: 55rem;
        margin-right: auto;
    }
    .nav .menu .list {
        gap: 15%;
        bottom: 0rem;
    }
    .nav .darkmode {
        display: flex;
        position: relative;
        right: 23rem;
        bottom: 0rem;
        width: 3rem;
        height: 6rem;
    }
    .nav .darkmode #sun {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        left: 0.4rem;
        font-size: 15px;
    }
    .nav .darkmode #moon {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        right: 0.4rem;
        font-size: 15px;
    }
    .sections .skillsSection .skillBox {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80rem;
        height: 29rem;
        border-radius: 20px;
        box-shadow: var(--boxshadow);
    }
    .sections .skillsSection .skillBox .skills {
        display: flex;
        justify-content: center;
        align-items: center;
        top: 3rem;
    }
    .sections .projectsSection {
        width: 100%;
        height: 130vh;
        margin-top: 0rem;
        overflow: hidden;
    } 
    .sections .projectsText {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-color);
        font-size: 2rem;
        margin: 0 6rem 0 6rem;
        flex-wrap: wrap;
    }
    .sections .projectsSection .project1 {
        display: flex;
        position: relative;
        bottom: 8rem;
        padding-top: 2rem;
    
    }
    .sections .projectsSection .project1 {
        display: flex;
        position: relative;
        margin: 0 10rem 0 10rem;
        flex-wrap: wrap;
        gap: 3rem;
    }
    .sections .projectsSection .project1 .imgTest {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 400px;
        bottom: 2rem;
        border-radius: 10px;
    }
    .sections .projectsSection .project1 .p1Text{
        display: flex;
        position: relative;
        top: 11rem;
        right: 18rem;
        font-size: 20px;
    }
    .sections .projectsSection .project2 .imgTest2 {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 400px;
        left: 38rem;
        bottom: 23rem;
        border-radius: 10px;
    }
    .sections .projectsSection .project2 .p2Text{
        display: flex;
        position: relative;
        bottom: 22.8rem;
        left: 48rem;
        font-size: 20px;
    }
    .sections .projectsSection .project1 .vid1 {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 320px;
    }
    .sections .projectsSection .project1 .vid2 {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 320px;
    }
    .sections .projectsSection .project1 .vid3 {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 320px;
    }
    .sections .projectsSection .links {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        margin-top: -3rem;
        top: 22rem;
    }
    .sections .projectsSection .links .githubImg {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 5rem;
        cursor: pointer;
    }  
    .nav .darkmode {
        display: flex;
        position: relative;
        margin-left: 60rem;
        bottom: 4rem;
    }
    .sections .homeText {
        display: flex;
        flex-wrap: wrap;
        position: relative;
        bottom: 3rem;
    }
    .sections .projectsText {
        display: flex;
        flex-wrap: wrap;
        position: relative;
        bottom: 5rem;
        font-size: 25px;
    }
    .sections .aboutText {
        display: flex;
        flex-wrap: wrap;
        position: relative;
        margin: 0rem 5rem 0 5rem;
        bottom: 13rem;
    }
    .sections .resumeLink {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        color: var(--text-color);
        font-size: 2rem;
        bottom: 16rem;
    }


    .sections .homeSection .homeTitle {
        display: flex;
        position: absolute;
        align-items: center;
        justify-content: center;
        top: 1rem;
        font-size: 60px;
        font-weight: bold;
        margin-top: 9rem;
    }
    .sections .homeSection .homeTitle2 {
        display: flex;
        position: absolute;
        align-items: center;
        justify-content: center;
        top: 8rem;
        font-size: 60px;
        font-weight: bold;
        margin-top: 9rem;
    }
    .sections .homeSection .links {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        top: 5rem;
        left: 7rem;
        margin: 0;
    }

    


    .card {
        position: absolute;
        overflow: hidden;
        top: 17rem;
        left: 0rem;
        background-color: var(--bkg-color2);
        width: 400px;
        height: 260px;
        margin: 1rem;
        margin-left: 5rem;
        border-radius: 15px;
        box-shadow: var(--boxshadow);
        transition: height 0.3s ease;
    }
    .card:hover{
        height: 420px;
    }
    .imageContainer {
        width: 400px;
        overflow: hidden;
        cursor: pointer;
    }
    .images {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }
    .images .img1 {
        width: 400px;
        height: 220px;
    }
    .images .img2 {
        width: 400px;
        height: 220px;
    }
    .images .img3 {
        width: 400px;
        height: 220px;
    }
    .images .img4 {
        width: 400px;
        height: 220px;
    }
    .images .img5 {
        width: 400px;
        height: 220px;
    }
    .card .description {
        position: relative;
        font-size: 16px;
        margin: 2rem;
        margin-bottom: 0rem;
        bottom: 3.5rem;
        color: var(--text-color2);
    }
    .card .githubImg {
        position: relative;
        width: 80px;
        bottom: 3.5rem;
        left: 20rem;
        filter: var(--githubImg1)
    }
    .card h3 {
        position: relative;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        left: 2rem;
        bottom: 2.2rem;
        color: var(--text-color2);
    }
    .buttonsContainer {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        bottom: 0.8rem;
        left: 6rem;
    }
    .overlay {
        position: fixed;
        justify-content: center;
        top: 7.3rem;
        left: 15rem;
        display: none;
        width: 60rem;
        height: 33rem;
    }
    .overlay2 {
        position: fixed;
        justify-content: center;
        top: 7.3rem;
        left: 15rem;
        display: none;
        width: 60rem;
        height: 33rem;
    }
    .overlay3 {
        position: fixed;
        justify-content: center;
        top: 7.3rem;
        left: 15rem;
        display: none;
        width: 60rem;
        height: 33rem;
    }
    .overlay4 {
        position: fixed;
        justify-content: center;
        top: 7.3rem;
        left: 15rem;
        display: none;
        width: 60rem;
        height: 33rem;
    }
    .overlay5 {
        position: fixed;
        justify-content: center;
        top: 7.3rem;
        left: 15rem;
        display: none;
        width: 60rem;
        height: 33rem;
    }
    .zoomed {
        display: flex;
        position: relative;
        justify-content: center;
        padding-left: 2rem;
        transform: scale(0.88);
        z-index: 1000;
    }
    .card2 {
        position: absolute;
        overflow: hidden;
        top: 17rem;
        left: 27rem;
        background-color: var(--bkg-color2);
        width: 400px;
        height: 260px;
        margin: 1rem;
        margin-left: 5rem;
        border-radius: 15px;
        box-shadow: var(--boxshadow);
        transition: height 0.3s ease;
    }
    .card2:hover{
        height: 420px;
    }
    .card2:active{
        overflow: visible;
    }
    .card2 .imageContainer {
        width: 400px;
        overflow: hidden;
        cursor: pointer;
    }
    .card2 .images .img1 {
        width: 400px;
        height: 220px;
    }
    .card2 .images .img2 {
        width: 400px;
        height: 220px;
    }
    .card2 .images .img3 {
        width: 400px;
        height: 220px;
    }
    .card2 .description {
        position: relative;
        font-size: 16px;
        margin: 2rem;
        margin-bottom: 0rem;
        bottom: 3.5rem;
        color: var(--text-color2);
    }
    .card2 h3 {
        position: relative;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        left: 2rem;
        bottom: 2.2rem;
        color: var(--text-color2);
    }
    .card2 .githubImg {
        position: relative;
        width: 80px;
        bottom: 3.5rem;
        left: 20rem;
        filter: var(--githubImg1);
    }
    .card2 .buttonsContainer {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        bottom: 0.8rem;
        left: 6rem;
    }
    .card2 .overlay {
        position: fixed;
        justify-content: center;
        top: 7.3rem;
        left: 15rem;
        display: none;
        width: 60rem;
        height: 33rem;
    }
    .card2 .overlay2 {
        position: fixed;
        justify-content: center;
        top: 7.3rem;
        left: 15rem;
        display: none;
        width: 60rem;
        height: 33rem;
    }
    .card2 .overlay3 {
        position: fixed;
        justify-content: center;
        top: 7.3rem;
        left: 15rem;
        display: none;
        width: 60rem;
        height: 33rem;
    }
    .card2 .zoomed {
        display: flex;
        position: relative;
        justify-content: center;
        padding-left: 2rem;
        transform: scale(0.88);
        z-index: 1000;
    }
    .card3 {
        position: absolute;
        overflow: hidden;
        top: 17rem;
        left: 54rem;
        background-color: var(--bkg-color2);
        width: 400px;
        height: 260px;
        margin: 1rem;
        margin-left: 5rem;
        border-radius: 15px;
        box-shadow: var(--boxshadow);
        transition: height 0.3s ease;
    }
    .card3:hover{
        height: 420px;
    }
    .card3 .imageContainer {
        width: 400px;
        overflow: hidden;
        cursor: pointer;
    }
    .card3 .images {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }
    .card3 .images .img1 {
        width: 400px;
        height: 220px;
    }
    .card3 .images .img2 {
        width: 400px;
        height: 220px;
    }
    .card3 .description {
        position: relative;
        font-size: 16px;
        margin: 2rem;
        margin-bottom: 0rem;
        bottom: 3.5rem;
        color: var(--text-color2);
    }
    .card3 .githubImg {
        position: relative;
        width: 80px;
        bottom: 3.5rem;
        left: 20rem;
        filter: var(--githubImg1)
    }
    .card3 h3 {
        position: relative;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        left: 2rem;
        bottom: 2.2rem;
        color: var(--text-color2);
    }
    .card3 .buttonsContainer {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        bottom: 0.8rem;
        left: 6rem;
    }
    .card3 .overlay {
        position: fixed;
        justify-content: center;
        top: 7.3rem;
        left: 15rem;
        display: none;
        width: 60rem;
        height: 33rem;
    }
    .card3 .overlay2 {
        position: fixed;
        justify-content: center;
        top: 7.3rem;
        left: 15rem;
        display: none;
        width: 60rem;
        height: 33rem;
    }
    .card3 .zoomed {
        display: flex;
        position: relative;
        justify-content: center;
        padding-left: 2rem;
        transform: scale(0.88);
        z-index: 1000;
    }
    .sections .resumeLink {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        color: var(--text-color);
        font-size: 2rem;
        cursor: pointer;
        z-index: 100;
        gap: 1rem;
    }
    .sections .resumeLink .resumeBtn {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 15rem;
        height: 2.2rem;
        bottom: 10rem;
    }
}

@media (max-width: 480px) {
    .nav {
        display: flex;
        flex-direction: column;
        height: 9%;
    }
    .nav h1 {
        display: flex;
        position: relative;
        bottom: 0.5rem;
        right: 6rem;
        font-size: 1.3rem;
    }   
    .nav .menu {
        width: 100%;
        justify-content: center;
        position: relative;
        bottom: 2.5rem;
        left: 7.5rem;
        margin-right: auto;
        z-index: 100;
    }
    .nav .menu .list {
        bottom: 0rem;
        font-size: 1rem;
        font-weight: bold;
    }
    .nav .darkmode {
        display: flex;
        position: relative;
        right: 21rem;
        bottom: 2.5rem;
        width: 3rem;
        height: 6rem;
    }






    .sections h1 {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        top: 0rem;
        padding: 1.3rem 0;
        font-family: var(--font2);
        font-size: 1.5rem;
        color: var(--text-color);
    }
    .sections .homeSection {
        width: 100%;
        height: 100vh;
        margin-top: 0rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-color);
        font-size: 2rem;
        padding: 0 8rem;
    }
    .sections .homeSection .homeTitle {
        display: flex;
        position: absolute;
        align-items: center;
        justify-content: center;
        top: 21rem;
        margin-left: 0rem;
        font-size: 3rem;
        font-weight: bold;
        margin-top: 0rem;
        margin-right: 0rem;
        user-select: none;
        left: 1rem;
    }
    .sections .homeSection .homeTitle2 {
        top: 21rem;
        margin-left: 0rem;
        font-size: 3rem;
        font-weight: bold;
        margin-top: 0rem;
        right: 0.7rem;
    }
    .sections .homeSection .homeTitle3 {
        top: 25rem;
        font-size: 2rem;
        font-weight: bold;
        width: 20rem;
        margin: 0;
    }
    .sections .homeSection .links {
        margin-left: 1rem;
    }
    .sections .homeSection .links .githubImg {
        width: 7rem;
        cursor: pointer;
    }






    .sections .skillsSection {
        width: 100%;
        height: 100vh;
        margin-top: 0rem;
        padding-top: 3rem;
        overflow: hidden;
    }
    .sections .skillsSection .skillBox {
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
        width: 23rem;
        height: 44.7rem;
        border-radius: 20px;
        bottom: 1.8rem;
        box-shadow: var(--boxshadow);
    }
    .sections .skillsSection .skillBox .skills {
        gap: 0%;
        top: -2.5rem;
        height: 40rem;
    }
    .sections .skillsSection .htmlBox {
        width: 14rem;
        height: 3rem;
        border-radius: 15px;
    }
    .sections .skillsSection .htmlBox .logo {
        width: 8rem;
        top: 0rem;
        right: 2.6rem;
        z-index: 100;
    }
    .sections .skillsSection .htmlBox .html {
        font-size: 22px;
        right: 3rem;
        color: var(--text-color);
    }
    .sections .skillsSection .jsBox {
        width: 14rem;
        height: 3rem;
        border-radius: 15px;
    }
    .sections .skillsSection .jsBox .logo {
        width: 2.2rem;
        top: 0rem;
        right: 0.9rem;
        z-index: 100;
    }
    .sections .skillsSection .jsBox .js {
        font-size: 22px;
        left: 0.5rem;
    }
    .sections .skillsSection .cssBox {
        width: 14rem;
        height: 3rem;
        border-radius: 15px;
    }
    .sections .skillsSection .cssBox .logo {
        width: 2.3rem;
        top: 0rem;
        right: 2.7rem;
        z-index: 100;
    }
    .sections .skillsSection .cssBox .css {
        font-size: 22px;
        left: 0rem;
    }
    .sections .skillsSection .pythonBox {
        width: 14rem;
        height: 3rem;
        border-radius: 15px;
        z-index: 100;
    }
    .sections .skillsSection .pythonBox .logo {
        width: 2.3rem;
        top: 0rem;
        right: 2rem;
        z-index: 100;
    }
    .sections .skillsSection .pythonBox .python {
        font-size: 22px;
        left: 0rem;
    }
    .sections .skillsSection .cppBox {
        width: 14rem;
        height: 3rem;
        border-radius: 15px;
    }
    .sections .skillsSection .cppBox .logo {
        width: 2.3rem;
        top: 0rem;
        right: 2.9rem;
        z-index: 100;
    }
    .sections .skillsSection .cppBox .cpp {
        font-size: 22px;
        left: 0rem;
    }
    .sections .skillsSection .mongoDBBox {
        width: 14rem;
        height: 3rem;
        border-radius: 15px;
    }
    .sections .skillsSection .mongoDBBox .logo {
        width: 2.6rem;
        top: 0rem;
        right: 1rem;
        z-index: 100;
    }
    .sections .skillsSection .mongoDBBox .mongodb {
        font-size: 22px;
        left: 0rem;
    }
    .sections .skillsSection .restapiBox {
        width: 14rem;
        height: 3rem;
        border-radius: 15px;
    }
    .sections .skillsSection .restapiBox .logo {
        width: 6.5rem;
        top: 0rem;
        right: 1.2rem;
        z-index: 100;
    }
    .sections .skillsSection .restapiBox .restapi {
        font-size: 22px;
        right: 1.6rem;
    }
    .sections .skillsSection .nodejsBox {
        width: 14rem;
        height: 3rem;
        border-radius: 15px;
    }
    .sections .skillsSection .nodejsBox .logo {
        width: 4.3rem;
        top: 0rem;
        right: 2.2rem;
        z-index: 100;
    }
    .sections .skillsSection .nodejsBox .nodejs {
        font-size: 22px;
        right: 1.6rem;
    }
    .sections .skillsSection .expressBox {
        width: 14rem;
        height: 3rem;
        border-radius: 15px;
        position: relative;
        top: -5.3rem;
    }
    .sections .skillsSection .expressBox .logo {
        width: 2.7rem;
        top: 0rem;
        right: 2rem;
        z-index: 100;
    }
    .sections .skillsSection .expressBox .express {
        font-size: 22px;
        right: 0.5rem;
    }
    .sections .skillsText {
        font-size: 2rem;
        padding: 15rem 8rem;
        margin: 0 20rem 0 20rem;
        flex-wrap: wrap;
    }






    .sections .projectsSection {
        width: 100%;
        height: 200vh;
        padding-top: 3rem;
    } 
    .sections .projectsText {
        font-size: 1.4rem;
        margin: 0;
        width: 28rem;
        padding: 0rem 4rem 0rem 0.3rem;
        position: relative;
        top: -1rem;
    }
     .sections .projectsSection .links {
        margin-top: -3rem;
        top: 85rem;
     }
     .card {
        top: 17rem;
        left: -4.6rem;
        width: 380px;
        height: 260px;
    }
    .imageContainer {
        width: 380px;
        overflow: hidden;
        cursor: pointer;
    }
    .images .img1 {
        width: 380px;
        height: 220px;
    }
    .images .img2 {
        width: 380px;
        height: 220px;
    }
    .images .img3 {
        width: 380px;
        height: 220px;
    }
    .images .img4 {
        width: 380px;
        height: 220px;
    }
    .images .img5 {
        width: 380px;
        height: 220px;
    }
    .card .githubImg {
        position: relative;
        width: 70px;
        bottom: 4rem;
        left: 19.5rem;
        filter: var(--githubImg1)
    }
    .buttonsContainer {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        bottom: 0.8rem;
        left: 6rem;
    }
    .closeBtn {
        font-size: 2rem;
        right: 5rem;
        bottom: -0.4rem;
        z-index: 10000;
    }
    .overlay {
        position: fixed;
        justify-content: center;
        top: 13.3rem;
        left: 0.2rem;
        display: none;
        width: 24rem;
        height: 15rem;
    }
    .overlay2 {
        position: fixed;
        justify-content: center;
        top: 13.3rem;
        left: 0.2rem;
        display: none;
        width: 24rem;
        height: 15rem;
    }
    .overlay3 {
        position: fixed;
        justify-content: center;
        top: 13.3rem;
        left: 0.2rem;
        display: none;
        width: 24rem;
        height: 15rem;
    }
    .overlay4 {
        position: fixed;
        justify-content: center;
        top: 13.3rem;
        left: 0.2rem;
        display: none;
        width: 24rem;
        height: 15rem;
    }
    .overlay5 {
        position: fixed;
        justify-content: center;
        top: 13.3rem;
        left: 0.2rem;
        display: none;
        width: 24rem;
        height: 15rem;
    }
    .zoomed {
        display: flex;
        position: relative;
        justify-content: center;
        padding-left: 2rem;
        transform: scale(0.78);
        z-index: 1000;
    }
    .card2 {
        top: 44rem;
        left: -4.6rem;
        width: 380px;
        height: 260px;
    }
    .card2 .imageContainer {
        width: 380px;
    }
    .card2 .images .img1 {
        width: 380px;
        height: 220px;
    }
    .card2 .images .img2 {
        width: 380px;
        height: 220px;
    }
    .card2 .images .img3 {
        width: 380px;
        height: 220px;
    }
    .card2 .githubImg {
        position: relative;
        width: 70px;
        bottom: 4rem;
        left: 19.5rem;
        filter: var(--githubImg1)
    }
    .card2 .overlay {
        position: fixed;
        justify-content: center;
        top: 13.3rem;
        left: 0.2rem;
        display: none;
        width: 24rem;
        height: 15rem;
    }
    .card2 .overlay2 {
        position: fixed;
        justify-content: center;
        top: 13.3rem;
        left: 0.2rem;
        display: none;
        width: 24rem;
        height: 15rem;
    }
    .card2 .overlay3 {
        position: fixed;
        justify-content: center;
        top: 13.3rem;
        left: 0.2rem;
        display: none;
        width: 24rem;
        height: 15rem;
    }
    .card2 .zoomed {
        display: flex;
        position: relative;
        justify-content: center;
        padding-left: 2rem;
        transform: scale(0.78);
        z-index: 1000;
    }
    .card3 {
        top: 71rem;
        left: -4.6rem;
        width: 380px;
        height: 260px;
    }
    .card3 .imageContainer {
        width: 380px;
        overflow: hidden;
        cursor: pointer;
    }
    .card3 .images .img1 {
        width: 380px;
        height: 220px;
    }
    .card3 .images .img2 {
        width: 380px;
        height: 220px;
    }
    .card3 .githubImg {
        position: relative;
        width: 80px;
        bottom: 4rem;
        left: 19.5rem;
        filter: var(--githubImg1)
    }
    .card3 .overlay {
        position: fixed;
        justify-content: center;
        top: 13.3rem;
        left: 0.2rem;
        display: none;
        width: 24rem;
        height: 15rem;
    }
    .card3 .overlay2 {
        position: fixed;
        justify-content: center;
        top: 13.3rem;
        left: 0.2rem;
        display: none;
        width: 24rem;
        height: 15rem;
    }
    .card3 .zoomed {
        display: flex;
        position: relative;
        justify-content: center;
        padding-left: 2rem;
        transform: scale(0.78);
        z-index: 1000;
    }






    .sections .aboutSection {
        width: 100%;
        height: 100vh;
        padding-top: 4rem;
        overflow: hidden;
    }
    .sections .aboutText {
        font-size: 1.5rem;
        padding: 5rem 1rem;
        margin: 0 0rem 0 0rem;
        bottom: 5rem;
        flex-wrap: wrap;
        text-align:center;
    }
    .sections .resumeLink {
        font-size: 2rem;
        bottom: -5rem;
        gap: 1rem;
    }
}