@charset "utf-8";
/* CSS Document */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
}

.wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* HEADER */
.header {
    background: #5B5B5B;
    text-align: center;
    padding: 10px;
}

.header img {
    max-width: 100%;
}

/* HERO */
.hero img {
    width: 100%;
    display: block;
}

/* CONTENT */
.content {
    padding: 20px;
    line-height: 1.6;
    font-size: 15px;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px;
}

.gallery img {
    width: 100%;
}

/* FOOTER */
.footer {
    background: #5B5B5B;
    color: white;
    padding: 15px;
    text-align: center;
}

.footer a {
    color: white;
    text-decoration: none;
    margin: 0 8px;
}

/* MOBILE */
@media (max-width: 700px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}