body {
    font-family: 'Trebuchet MS', sans-serif;
    margin: 0;
    background: linear-gradient(120deg, #ff9a9e, #fad0c4);
}

header {
    text-align: center;
    padding: 50px 20px;
    color: white;
}

.bio {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 25px;
    border-radius: 15px;
    line-height: 1.8;
}

.gallery {
    display: flex;
    gap: 15px;
    padding: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.box {
    width: 180px;
    background: white;
    border-radius: 15px;
    padding: 10px;
    text-align: center;
}

.box img {
    width: 100%;
    border-radius: 10px;
}

table {
    width: 95%;
    margin: 40px auto;
    background: white;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

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

footer {
    text-align: center;
    padding: 20px;
    color: white;
}