body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff; /* White background */
    color: #000000; /* Black text color */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.image {
    width: 50px;
    height: 50px;
}

/* Center the navigation bar content */
nav {
    background-color: #121518;
    padding: 10px 0;  /* Remove extra left/right padding */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center; /* Center content horizontally */
}

/* Ensure nav-container is centered and flexbox is used properly */
.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;  /* Add some side padding to the container */
}

/* Style for the navigation list */
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* Center the list items */
    align-items: center;
}

/* Flexbox to ensure equal space between list items */
.nav-list li {
    margin: 0 15px;  /* Adjust the spacing between menu items */
    text-align: center;
}

/* Ensure links are properly styled */
.nav-list a {
    text-decoration: none;
    color: #00e5ff;
    font-size: 18px;
    padding: 10px;
    display: block;
}

/* Style for hover and active states */
.nav-list a:hover, .nav-list a.active {
    color: #ffffff;
    background-color: #2a2f36;
    border-radius: 5px;
}


/* Hamburger styles */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #00e5ff;
}

/* Mobile responsive styles */
@media only screen and (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-list li {
        text-align: left;
        width: 100%;
    }

    .hamburger {
        display: block;
    }

    .nav-list.active {
        display: flex;
    }
}


.content {
    padding-top: 80px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.profile {
    display: flex;
    gap: 20px;
}

.profile img {
    max-width: 200px;
    height: 240px;
    border-radius: 10px;
}

.profile-text {
    max-width: 600px;
}

.profile-text h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.profile-text p {
    margin-bottom: 15px;
}

.image {
    width: 50px;
    height: 50px;
}

.back-button {
    margin-top: 20px;
    text-align: center;
}

.back-link {
    text-decoration: none;
    font-size: 18px;
    color: #00bfff; /* or any color you prefer */
    font-weight: bold;
}

.back-link:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 768px) {
    body {
        font-size: 14px !important;
        padding: 10px !important;
    }
}

@media only screen and (max-width: 480px) {
    body {
        font-size: 12px !important;
        padding: 5px !important;
    }
}

