body {
    background-color: #f4f4f4;
    font-family: "Libre Baskerville", serif;
    margin: 0;
    padding: 0;
    color: #333;
}

h1, p {
    text-align: center;
    margin: 0;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #444;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

.title {
    font-size: 3rem;
    color: #ffffff;
    background: #00796b;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.bio, .summary {
    max-width: 800px;
    margin: 20px auto;
    padding: 15px;
    background: #e0f2f1;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bio {
    font-weight: bold;
    text-transform: uppercase;
    color: #004d40;
}

.summary {
    font-weight: 400;
    color: #333;
}

div {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
    padding: 10px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

div img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    border: 5px solid #ddd;
    margin-bottom: 10px;
}

div h1 {
    font-size: 1.5rem;
    color: #00796b;
    margin: 10px 0;
}

footer {
    background: #00796b;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

