* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    background-color: #91a5c332;
    color: #222
}

header {
    background-color: #08245c9c;
    color: white;
    padding: 20px;
    text-align: center;
}

.intro,
.bio,
.gallery,
.contact {
    background-color: rgba(195, 215, 238, 0.79);
    margin: 20px;
    padding: 20px;
    border-radius: 9px;
}

.bio-content {
    display: flex;
    gap: 20px;
}

.bio img {
    width: 150px;
    border-radius: 50%;
    border: 3px solid #333;
}

.photo-list {
    list-style: none;
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 0;
    flex-wrap: wrap;
}

.photo-list img {
    width: 200px;
    border: 2px solid #ccc;
}

.photo-list img:hover {
    border-color: #08245c9c;
    ;
}

button {
    background-color: black;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #444;
}

.contact {
    padding: 20px;

}

footer {
    text-align: center;
    padding: 10px;

}

.social-links {
    margin: 10px 0;
}

.social-links a {
    color: #08245c9c;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

.social-links a:hover {
    color: #444;
    text-decoration: underline;
}