@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 40px;
}

h1, h2 {
    text-align: center;
    color: #444;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery div {
    border: 1px solid #ddd;
    padding: 10px;
    background: #fff;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

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

.gallery img {
    display: block;
    max-width: 200px;
    height: auto;
}

img.full-size {
    display: block;
    margin: 0 auto;
    max-width: 90%;
    height: auto;
}

.caption {
    text-align: center;
    margin-top: 15px;
    font-size: 1.1em;
}

a {
    text-decoration: none;
    color: #007acc;
}

a:hover {
    text-decoration: underline;
}
