body {
    background-color: #f8f9fa;
}

h1 {
    font-family: Arial, sans-serif;
    color: #343a40;
}

#gallery img {
    cursor: pointer;
    transition: transform 0.2s;
}

#gallery img:hover {
    transform: scale(1.05);
}