*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-height: 100px;
    background-color: #0a192f;
    font-family: 'Poppins', sans-serif !important;
    border-bottom: 1px solid #64ffda;
    padding: 0 30px;
}

.logo-header {
    display: flex;
    align-items: center;
}

.nameHeader {
    color: #e6f1ff;
    letter-spacing: 2px;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 30px; /* Adjust this to control the space between the logo and text */
}

h1, h2 {
    margin: 0;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 20px;
}

.logo {
    display: flex;
    float: left;
}

.N1 {
    width: 30px;
    height: 106px;
    background: #3f9f89;
}

.N2 {
    width: 30px;
    height: 106px;
    transform: skew(30deg);
    background: #64ffda;
}

.N3 {
    width: 30px;
    height: 106px;
    background: #4ec2a7;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 40%;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    position: relative;
    color: #e6f1ff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: bold;
}

.nav-links a::after {
    content: "";
    position: absolute;
    background-color: #64ffda;
    height: 3px;
    width: 0;
    left: 0;
    bottom: -2px;
    transition: .3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #64ffda;
}

body {
    background-color: #0a192f;
    height: 100%;
    margin: 0;
}

.content {
    margin: 0 auto;
    background-color: #0d1f3a; 
    width: 80vw;
    min-height: 100vh;
    padding: 200px;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    margin: 5px;
    background-color: #64ffda;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all .3s ease-in-out;
}

#footerWrapper {
    border-top: 1px solid #64ffda;
    background-color: #0a192f;
}

#footerText2 {
    display: flex;
    justify-content: center;
    opacity: .7;
    color: #e6f1ff;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    padding-bottom: 10px;
}

#linkWrapper {
    margin: 0 auto;
    text-align: center;
    opacity: .9;
    padding-top: 10px;
    height: 35px;
}

#linkWrapper a:hover {
    opacity: .7;
    transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    -webkit-transition: opacity .2s ease-out;
    -o-transition: opacity .2s ease-out;
}

#linkWrapper a img {
    padding: 0px 15px 0px 15px;
    max-width: 100%;
    max-height: 100%;
}

.miniLogo {
    display: flex;
    justify-content: center;
    padding: 10px;
    opacity: .7;
}

.miniN1 {
    width: 10px;
    height: 35.3px;
    background: #3f9f89;
}

.miniN2 {
    width: 10px;
    height: 35.3px;
    transform: skew(30deg);
    background: #64ffda;
}

.miniN3 {
    width: 10px;
    height: 35.3px;
    background: #4ec2a7;
}

@media screen and (max-width: 1050px) {
    .content {
        width: 100%;
    }
    .nameTag {
        font-size: 25px;
    }
    .jobTag {
        font-size: 15px;
    }
    .nameHeader {
        margin-left: 20px;
    }
}

@media screen and (max-width: 768px) {
    .nameTag {
        font-size: 20px;
    }
    .jobTag {
        font-size: 15px;
    }
    .nameHeader {
        margin-left: 20px;
    }
    .nav-links {
        position: absolute;
        z-index: 1;
        top: 107px;
        width: 100%;
        background: #0a192f;
        border-bottom: 1px solid #64ffda;
        transition: 0.4s;
        max-height: 0;
        display: block;
        text-align: center;
        overflow: hidden;
    }
    .nav-links.active {
        max-height: 450px;
    }
    .nav-links li {
        margin: 20px;
        opacity: 0;
        transition: 0.5s;
    }
    .nav-links.active li {
        opacity: 1;
    }

    .burger {
        display: block;
    }
    .burger.active .line:nth-child(2){
        opacity: 0;
    }
    .burger.active .line:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .line:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
}