﻿.allItems {
}

.itemContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
}

.eachItem {
    flex-basis: 200px;
    height: 300px;
    margin-bottom: 2em;
    position: relative;
    overflow: hidden;
    background-color: #e9e9e9;
    padding: 10px;
    position : relative;
}

.cover {
    width: 100%;
    height: auto;
}

.belowText {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.44);
}

.title {
    display: block;
    font-size: 1.3em;
    font-weight: 700;
    color: rgb(255, 255, 255);
}

.date {
    display: block;
    font-size: 1em;
    font-weight: 500;
    color: rgb(255, 216, 0);
}
