.pic-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex: 1;
    width: 100%;
    justify-content: space-between;
}

.pic-card {
    width: 32.5%;
    height: 31%;
    border: 1px #FFD24B solid;
    border-radius: 4px;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.pic-title {
    background-color: #FFD24B;
    padding: 0.5em;
    color: #eb6877;
    font-weight: bold;
}

.pic-hover {
    flex: 1;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pic-info-back {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    height: 32px;
    transition: height 0.3s;
}

.pic-info {
    color: white;
    padding: 0.8em 0.5em 0.5em 0.5em;
    display: flex;
}

.pic-card:hover .pic-info-back {
    height: 0;
}