body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background: #f4f4f4;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

#bio {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #eaeaea;
}

#bio img {
    width: 200px;
    height: 200px;
    border-radius: 50%; /* This makes the image circular */
    margin-right: 20px;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#bio div {
    max-width: 500px;
}

#projects {
    background: #f9f9f9;
    padding: 20px;
}

#projects h2 {
    text-align: center;
}

.project {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
}

.project img.project-image {
    max-height: 400px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.project a.report-link {
    display: inline-block;
    margin-bottom: 10px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
