body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding-top: 60px; /* Add padding to body to avoid content being hidden by the fixed navbar */
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px);
    padding: 0 1rem;
}

.profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #333;
}

.profile h1 {
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: clamp(1.5rem, 5vw, 2.5rem); /* Responsive font size */
}

.profile p {
    margin-top: 0;
    font-size: clamp(1rem, 4vw, 1.2rem); /* Responsive font size */
    color: #aaa;
}

.links {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
}

.link-button {
    display: block;
    background-color: #333;
    color: #ffffff;
    padding: 15px 0;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: 100%;
    margin: 0 auto;
}

.link-button:hover {
    background-color: #555;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #121212;
}

.navbar {
    width: 90%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 2rem;
}

.more-button {
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px 20px;
    border: 1px solid #ffffff;
    border-radius: 5px;
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1001;
}

.menu-overlay.open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ffffff;
    font-size: 3rem;
    cursor: pointer;
}

.menu-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.menu-overlay li {
    padding: 1rem 0;
}

.menu-overlay a {
    color: #ffffff;
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
}

@media (max-width: 480px) {
    .profile img {
        width: 120px;
        height: 120px;
    }
}
