.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: 10px;
}

@media only screen and (max-width: 600px) {
  .item {
      width:100%;
  }
}

.item {
    position: relative;
    object-fit: cover;
    border: 1px;
    border-color: white;
    border-style: solid;
}

.item img {
    height: 250px;
    width: auto;
    object-fit: cover;
}

img {
    -webkit-filter: brightness(100%);
}

img:hover {
    -webkit-filter: brightness(25%);
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.centered {
    position: absolute;
    top: 5px;
    left: 5px;
    right:5px;
    z-index: 999;
    font-size: 25px;
    font-weight: bold;
    text-align: left;
    color:white;
    background: black;
    border: 1px;
    border-color: white;
    border-style: solid;
    pointer-events: none;
}

.description {
    display: block;
    background: rgba(0, 0, 0, 0);
    position: absolute;
    left: 5px;
    right:5px;
    top: 42px;
    z-index: 999;
    font-size: 16px;
    text-align: left;
    color:white;
    color: rgba(255, 255, 255, 0);
    pointer-events: none;
    border: 0px;
    border-color: white;
    border-style: solid;
}

.date {
    display: block;
    background: rgba(0, 0, 0, 0);
    position: absolute;
    left: 5px;
    right:5px;
    bottom: 2px;
    z-index: 999;
    font-size: 16px;
    text-align: left;
    color:white;
    color: rgba(255, 255, 255, 0);
    pointer-events: none;
    border: 0px;
    border-color: white;
    border-style: solid;
}

item a {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.item:hover .description {
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    color: rgba(255, 255, 255, 1.0);
    background: rgba(0, 0, 0, 1);
    border: 1px;
    border-color: white;
    border-style: solid;
}
