body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

header {
    text-align: center;
    padding: 2em;
    background: #4caf50;
    color: white;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em;
    padding: 2em;
    max-width: 1200px;
    margin: auto;
}

.gallery a {
    text-decoration: none;
    color: inherit;
    text-align: center;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

h2 {
    margin-top: 0.5em;
    font-size: 1.2em;
}

footer {
    text-align: center;
    padding: 1em;
    background: #333;
    color: white;
}
