body{

    background-color: #3b3b3b;
    margin: 0 auto;
    max-width: 1440px;
    height: 100vh;
    color: white;
}
a{
    text-decoration: none;
}
a, a:visited, a:hover, a:active {
  color: inherit;
}
.body-wrapper{
    width: 100%;
    height: 100vh;
    position: relative;

}
.nav-wrapper{
    margin: 0 16px 0 16px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 0 0 0;
}
.nav {
    display: flex;
    padding: 8px 8px;     /* Matches body-wrapper’s horizontal padding */
    max-width: 1408px;
    background-color: rgba(86,86,86,0.5);
    backdrop-filter: blur(4px);
    align-content: center;
    justify-content: space-between;
    border-radius: 4px;
    border-style: none;
    margin: 0 auto;
    box-sizing: border-box;
}
.brand-section{
    display: flex;
    width: 136px;
    gap: 8px;
    align-content: center;
}
.brand-section p {  
    font-family: "Martian Mono", monospace;
    font-weight: 600;
    font-size:12px;
    line-height: 14px;
    margin: 0;
    align-content: center;
}

.cta{
    padding: 6px 5px;
    font-family: "Martian Mono", monospace;
    font-weight: 300;
    font-size: 10px;
    line-height: 20px;
    background-color: #f80;
    border-radius: 2px;
    border-style: none;
    }

.cta:hover{
    background-color: #C36800;
}
.content-section{
    display: flex;
    gap: 16px;
    width: 100%;
    height: 100%;
    padding: 0 16px; /* Matches .nav’s and .body-wrapper’s left/right padding */
    box-sizing: border-box;

}
.personal-info-section{
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content:space-between;
    padding: 92px 0 72px 0;
    max-width: 518px;
    order: 1;
}
.intro{

}

.intro h1{
    margin: 0;
    font-family: "Martian Mono", monospace;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
}

.intro-job-title{
    margin: 0 0 10px 0;
    font-family: "Martian Mono", monospace;
    font-weight: 100;
    font-size: 10px;
    line-height: 20px;
}
.intro-text{
    text-transform: uppercase;
    font-family: "Martian Mono", monospace;
    font-weight: 100;
    font-size: 12px;
    line-height: 20px;
}
.exp{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.exp-jobtitle{
    display: flex;
    justify-content: space-between;
}
.exp-jobtitle p{
    text-transform: uppercase;
    font-family: "Martian Mono", monospace;
    font-weight: 200;
    font-size: 12px;
    line-height: 16px;
    margin: 0;
}
.temp-section{
    padding: 92px 0 72px 0;
    order: 2;
}
.temp-section p{
    margin: 0;
    text-transform: uppercase;
    font-family: "Martian Mono", monospace;
    font-weight: 200;
    font-size: 12px;
    line-height: 16px;
}
.footer-wrapper{
    padding: 16px 0 0 0;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
}
.footer{
    display: flex;
    justify-content: space-between;
    align-content: center;
    padding: 8px 16px;
    background: rgba(86,86,86,0.5);
    background: linear-gradient(0deg, rgba(86, 86, 86, 1) 0%, rgba(86, 86, 86, 0) 100%);
    backdrop-filter: blur(4px);
    text-transform: uppercase;
    font-family: "Martian Mono", monospace;
    font-weight: 200;
    font-size: 12px;
    line-height: 16px;
    text-decoration: none;
    color: white;
}
.footer img{
    width: 16px;
    height: 16px;
    order: 1;
}
.footer p{
    margin: 0;
    font-family: "Martian Mono", monospace;
    font-weight: 100;
    font-size: 10px;
    line-height: 20px;
    order:2;
}
.footer-email{
    order: 3;
}
/* Change order at 768px and below */
@media (max-width: 768px){
    .content-section{
        flex-direction: column;
    }
    .exp{
        gap: 8px;
    }
    .exp-jobtitle{
        flex-direction: column;
    }
    .intro{
        padding: 0 0 32px 0;
    }
    .footer{
        flex-direction: column;
        gap: 8px;
    }
    .footer p{
        order: 3;
    }
    .footer-email{
        order: 2;
    }
}