html{
    background-color: #2D2E31;
    scroll-behavior: smooth;
}

body{
    padding:0px;
    margin:0px;
    /* font-family: 'Komika', 'Comic Sans MS', cursive, sans-serif; */
    font-family: "Nunito", sans-serif;
    color:#eee;
    overflow-x: hidden;

}

#hm-icon{
    width:80px;
    height:80px;
    margin-right:10px;
    vertical-align: middle;
    cursor: pointer;
}

section{
    /* min-height: 50vh; */
}


button{
    font-family: "Nunito", sans-serif;
}

nav, .nav-part, .intro, .intro-part, .flex-divs, .flex-column, .social-links-div, .second-part, #projects-container, #project-cards, #section-projects, 
.stack-overview-section,.center-content-div, .flex-items, #footer-section, .ex-flex, #timeline-container, #tech-wrapper,#tech-skill-cards, .card-title-div, .tech-skill-card ul{
  /* border:solid 1px #817e7e; */
}

.upper-half{
    background-color: #252629;
    width:100%;
    height:100vh;
    padding:10px 80px;
    box-sizing: border-box;
}
.lower-half{
    padding:10px 30px;
    box-sizing: border-box;
    padding:10px 80px;
}

nav{
    display: flex;
    justify-content: space-between;
    padding:5px 20px;
}
.nav-part{
  display: flex;
  align-items: center;
}
#left-nav{
    flex-direction: column;
    gap:0px;
}
#myname{
    position:relative;
    cursor: pointer;
    top:-10px;
    font-size: 12px;
    font-weight: bold;
    /* color:#3a8e63; */
    background: linear-gradient(to right,#FFB524, #ba8417, #3a8e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-part ul{
    list-style: none;
    list-style-type: None;
    margin:0px;
    padding:0px;
    display: flex;
    padding:20px;
    width: 30vw;
}

#mid-nav ul{
    gap:40px;
}
#right-nav ul{
    justify-content: right;
}

a{
    font-size: 14px;
    color:#3a8e63;
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}


.contact-me{
    border: none;
    padding: 11px 30px;
    color: #000;
    background-image: linear-gradient(135deg,#FFB524,#ba8417);
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;

    /* --- 3D effect --- */
    box-shadow: 0px 2px 0px #8a5f12, 
                0px 4px 8px rgba(0,0,0,0.3);
    transition: all 0.15s ease-out;
}


.contact-me:active {
    /* Pressed-in effect */
    transform: translateY(3px);
    box-shadow: 0px 1px 0px #8a5f12,
                0px 2px 4px rgba(0,0,0,0.2);
}

.dash{
    display: inline-block;
    transform: scaleX(3); 
}


.green{
    color:#46aa76;
}


.title-div{
    display: flex;
    justify-content: center;
}


#tech-skills-section{
    background-color: #252629;
    margin-top:100px;
}





#footer-section{
    background-color: #2F3032;
    box-sizing: border-box;
}







@media (max-width: 768px) {

body{
    overflow-x: hidden;
}
.upper-half{
    background-color: #252629;
    width:100vw;
    height:auto;
    padding:10px 5px;
    box-sizing: border-box;
}
nav{
    display: flex;
    justify-content: space-between;
    padding:5px 20px;
    flex-wrap: wrap;
}
#mid-nav{
    /* display:none */
    width: 100%;
    justify-content: flex-end;
    order:3;
}
#mid-nav ul{
    gap:20px;
    padding:0px 30px;
}
#mid-nav ul li{
    text-decoration:underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    text-decoration-color: #3a8e63;
}
#mid-nav ul li:first-child{
    display: none;
}
.nav-part ul{
    width: auto;
}


.lower-half{
    box-sizing: border-box;
    padding:5px;
}






}