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


/* Masonry container */
.masonry {
	column-count: 3;
	margin: 1.5em auto;
	max-width: 960px;
	column-gap: 1.5em;
}


/* Masonry bricks or child elements */
.brick {
	display: inline-block;
	margin-top: 0;
	margin-bottom: 1.5em;
	margin-left: 0;
	margin-right: 0;
	width: 100%;
	font-size: 1.25rem;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
}

.brick a:link,
.brick a:visited {
	color: #000;
}

.brick a:hover,
.brick a:active {
	text-decoration: none;
	color: #000;
}

.brick a img {
	border: solid 2px #000;
	border-radius: 8px;
}

.brick a img:hover {
	border: solid 2px #000;
}


/* Masonry on computer */
@media only screen and (min-width: 1024px) {
	.masonry {
		column-count: 3;
	}
}

/* Masonry on tablet */
@media only screen and (max-width: 1023px) and (min-width: 768px) {
	.masonry {
		column-count: 3;
	}
}

/* Masonry on smartphone */
@media only screen and (max-width: 767px) {
	.masonry {
		column-count: 2;
	}
	.item {
		text-align: center;
	}
}