
* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    text-align: center;
}

h1 {
    text-align: center;
	font-family: 'Georgia', serif;
    padding: 20px 0;
}

.content {
	width: 800px;
	margin: 0 auto;
	text-align: justify;
	font-family: Arial, sans-serif;
}

.center-img {
	display: block;
	margin: 0 auto;
}

.language-links {
	text-align: center;
	margin-bottom: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    padding: 20px;
}

.gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s;
}

.gallery img:hover {
    transform: scale(1.05);
}


.album {
    column-count: 4;
    column-gap: 10px;
    padding: 20px;
}

.album img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    display: block;
    cursor: pointer;
    transition: transform 0.2s;
    border-radius: 5px;
}

.album img:hover {
    transform: scale(1.05);
}


.back-button {
    display: block;
    margin: 0 auto 20px auto;
    padding: 10px 20px;
    background-color: #4285f4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    width: 150px;
    text-align: center;
    transition: background-color 0.2s;
}

.back-button:hover {
    background-color: #3367d6;
}


img {
    max-width: 100%;
    height: auto;
}

button {
    margin-top: 20px;
}


@media (min-width: 1200px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(299px, 1fr));
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 767px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 1200px) {
    .album {
        column-count: 3;
    }
}

@media (max-width: 900px) {
    .album {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .album {
        column-count: 2;
    }
}

@media (max-width: 400px) {
    .album {
        column-count: 1;
    }
}
