@charset "UTF-8";
/* CSS Document */
* {
  box-sizing: border-box;
}
.center {
  text-align: center;
}
.masonry {
	max-width: 1280px;
	margin: 5px auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	grid-column-gap: 5px;
	grid-row-gap: 5px;
}

.masonry .column img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
* {
  box-sizing: border-box;
}

.center {
    text-align: center;
}

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

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-rows: min-content;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
     grid-row-end: span 1; 
   grid-gap: 10px;
}

.grid .item {
    display: block;
    width: 100%;
    height: fit-content;
}

.grid .item img {
    display: block;
    width: 100%;
    height: auto;
}
