/* Basic styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    ;
    color: #333;
}

 MAY NOT BE RELEVANT .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav ul {
    display: flex;
    justify-content: flex-end;
    list-style-type: none;
    padding: 10px;
    background-color: #f8f8f8;
    margin: 0;
}








nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
}
nav a:hover{
    background-color: #f0f0f0;
}
nav li:first-child{
    margin-right: auto;
}
.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: white;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; 
}
.sidebar li{
    width: 100%;
}
.sidebar a{
    width: 100%;
}











nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    font-size: 1.1rem;
}

.title-section h1 {
    text-align: center;
    font-size: 3rem;
    color: #007bff;
    margin: 50px 0 20px 0;
}

.bio {
    text-align: center;
    font-size: 1.1rem;
    padding: 20px;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .title-section h1 {
        font-size: 2.5rem;
    }

    .bio {
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 8px 0;
    }

    .title-section h1 {
        font-size: 2rem;
    }

    .bio {
        font-size: 0.9rem;
        padding: 10px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .title-section h1 {
        font-size: 2.8rem;
    }

    .bio {
        font-size: 1.1rem;
    }
}


