.game-display-grid {
    margin: 50px 150px 50px 150px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 50px;
}

.game-preview-card {
    border-color: black;
    border-width: 5px;
    border-radius: 15px;
    border-style: solid;
    background-color: #ddeedd;
    box-shadow: 0 0 10px 4px rgba(255, 255, 255, 0.5);
}
@keyframes gameCardHoverAnim {
  0% {
    box-shadow: 0 0 10px 4px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
  }
}
@keyframes gameCardUnhoverAnim {
  0% {
    box-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 10px 4px rgba(255, 255, 255, 0.5);
  }
}
.game-preview-card:hover{
    cursor: pointer;
    animation-name: gameCardHoverAnim;
    animation-duration: 0.1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}
.game-preview-card:not(:hover){
    animation-name: gameCardUnhoverAnim;
    animation-duration: 0.1s;
    animation-fill-mode: backwards;
    animation-timing-function: ease-in;
}

.game-preview-img {
    object-fit: cover;
    width: 100%;
    height: 100px;
    /* clip-path: rectangle(0px, 0px, 100%, 0px, 0, 0); */
    border-bottom-color: black;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    border-top-color: black;
    border-top-width: 3px;
    border-top-style: solid;
}
.game-preview-title {
    margin: 10px 0px 5px 0px;
    text-align: center;
    font-family: "Fredoka";
    font-size: 1.5rem;
    color: black;
}
.game-preview-release-date {
    margin: 5px 0px 5px 0px;
    text-align: center;
    font-family: "Fredoka";
    font-size: 1rem;
    color: black;
}
.game-preview-tags {
    font-size: 1.25rem;
    text-align: center;
    font-family: "Fredoka";
    color: #444444;
    margin: 5px 0 8px 0;
}
.game-preview-description{
    font-family: "Fredoka";
    font-size: 1rem;
    color: black;
    margin: 5px 15px 15px 15px;
}