body {
    font-family: Georgia, serif;
    margin: 0;
    background: #f5f5f5;
}

header {
    background: #2c2c2c;
    color: white;
    text-align: center;
    padding: 30px;
}

.bio {
    max-width: 900px;
    margin: auto;
    padding: 25px;
    background: white;
    line-height: 1.7;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.card {
    width: 180px;
    background: white;
    padding: 10px;
    text-align: center;
}

.card img {
    width: 100%;
}

table {
    width: 95%;
    margin: 30px auto;
    border-collapse: collapse;
    background: white;
}

td, th {
    border: 1px solid #000;
    padding: 8px;
    text-align: center;
}

footer {
    text-align: center;
    padding: 15px;
    background: #2c2c2c;
    color: white;
}