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

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

/* Contact styles */
.contact {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.contact a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Gallery styles */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

.gallery_link {
    display: block;
    flex: 1 1 auto;
}

.gallery_img {
    width: auto;
    height: 250px;
    border-radius: 2px;
    transition: transform 0.2s;
    display: block;
}

@media (max-width: 768px) {
    .gallery {
        flex-direction: column;
        gap: 10px;
    }

    .gallery_img {
        width: 100%;
        height: auto;
        border-radius: 0;
    }

    .gallery_link {
        width: 100%;
    }
}
