body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 10px;
}

header h1 {
    font-size: 24px;
    margin: 0;
}

header p {
    color: #666;
    margin: 5px 0 20px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.biography {
    width: 80%;
    text-align: center;
}

.biography h2 {
    font-size: 36px;
    margin-top: 40px;
    color: #333;
}

.bio-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 20px auto;
    display: block;
}

.bio-text {
    text-align: center;
    width: 100%;
}

.bio-text p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 20px;
    max-width: 800px;
    margin: 0 auto 20px auto; /* Center the text block */
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    width: 100%;
}

