body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f5f5f5;
    color: #333;
}
header {
    background: white;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #ccc;
}
header h1 {
    margin: 0;
}
nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}
nav a:hover {
    text-decoration: underline;
}
.tagline {
    font-style: italic;
    color: #666;
}
.filters {
    text-align: center;
    margin-bottom: 1rem;
}
.filters button {
    margin: 0 5px;
    padding: 0.5rem 1rem;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.gallery img {
    width: 300px;
    border-radius: 8px;
    transition: transform 0.3s;
}
.gallery img:hover {
    transform: scale(1.05);
}
footer {
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-top: 1px solid #ccc;
}
