@charset "utf-8";
/* CSS Document */

*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.gallery-spots {
    margin: auto auto;
	max-width: 2000px;
    width: 80%;
	height: auto;
	text-align: center;
	display: grid;
}


.gallery-spots img {
	text-align: center;
	align-content: center;
	transition: 0.5s;
    padding: 15px;
    width: 340px;
}

.gallery-spots img:hover {
    transform: scale(105%);
}

@media (max-width: 767px) {
    .gallery-spots {
        width: 100%;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}