:root{
    background-color: #0A061E;
}

html{
    scroll-behavior: smooth;
}

*{
    background-color: #0A061E;
    font-family: 'IBM Plex Mono', monospace;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #0A061E;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-container{
    width: 60%;
    min-width: 360px;
    margin: 0 auto;
    background-color: #0A061E;
}


nav{
    position: fixed;
    top: 0;
    scroll-behavior: unset;
    width: 60%;
    height: 60px;
    background-color: #0A061E;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbox{
    width: 100%;
    height: 60px;
    background-color: #0A061E;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navItems{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.navItem{
    margin-left: 48px;
}

.navbar-scrolled {
    border-bottom: 2px solid #A7ABC6; /* Adjust the border style as needed */
}

.logo{
    color: #FFD400;
}

.container{
    margin-top: 60px;
}

.intro{
    height: max-content;
    display: flex;
    flex-direction: column;
    padding-top: 72px;
}

.name-line{
    display: flex;
    flex-direction: column;
}

.name-photo-line{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.photo img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-right: 52px;
}

.links img{
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 16px;
    margin-top: 24px;
}

.links-section{
    display: flex;
    align-content: center;
    flex-direction: column;
}

.yellow-link{
    color: #FFD400;
    display: flex;
    align-items: center;
}

.yellow-link a{
    color: #FFD400;
    display: flex;
    align-items: center;
}

.email{
    color: #FFD400;
}

.name a{
    padding-right: 20px;
}

.projects{
    margin-top: 80px;
}

.project-title{
    color:#E2E5FF;
    padding-top: 48px
}

.icon img{
    width: 28px;
    height: 28px;

}

a{
    width: max-content;
    height: max-content;
    text-decoration: none;
    color:#A7ABC6;
}

h1{
    color:#E2E5FF;
}

p{
    color: #A7ABC6;
    margin-top: 32px;
    line-height: 1.6rem;
}

.tech-stack-link{
    display: flex;
    flex-direction: row;
}

footer{
    bottom: 0;
    padding-top: 64px;
    padding-bottom: 24px;
    justify-content: center; 
}