body {
    background-color: rgb(8, 5, 26);
    color: white;
    font-family: sans-serif;
    margin: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    height: 400px; /* Adjusted size */
    flex-shrink: 0; /* Prevent shrinking */
}

.navbar {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.burger-menu {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.burger-bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #333;
    transition: right 0.3s ease-in-out;
}

.nav-links.active {
    right: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
}


.burger-menu.active .burger-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-bar:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.about-main {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align to the top */
    min-height: calc(100vh - 400px); /* Adjust based on header height, logo is 400px */
    padding-top: 2rem; /* Add some padding from the top */
    text-align: center;
}

.email-info {
    font-size: 2rem;
    padding: 2rem;
    border: 2px solid white;
}