#displayContainer {
    margin-top: 10vh;

    text-align: center;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.displayWrapper {
    height: 27vh;
    width: 27vw;

    margin-top: 1vh;
    margin-bottom: 1vh;

    border-radius: 4px;
    border-color: rgb(25, 25, 25);
    border-width: 1px;
    border-style: solid;

    color: black;
    background-color: rgb(60, 60, 60);

    text-decoration: none;

    overflow: hidden;
}

.displayWrapper img {
    height: 80%;
    margin-top: 4px;
    transition: height linear 0.4s;
}

.displayWrapper:hover img {
    height: 0%;
}

.displayWrapper p {
    margin-top: 2vh;
}