body {
    font-family: Arial, sans-serif;
    background-color: blanchedalmond;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: darkolivegreen;
    color: whitesmoke;
    padding: 20px;
    text-align: center;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

section.image-grid img {
    width: 200px;
    height: 150px;
}

figure {
    width: 200px; /* Adjust as needed */
    text-align: center;
}

figure img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

figure img:hover {
    transform: scale(1.1);
}

figcaption {
    font-size: 14px;
    margin-top: 5px;
}

footer {
    margin-top: 30px;
    padding: 10px;
    background-color: darkolivegreen;
    color: whitesmoke;
}
