.game-project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, 20rem);
    grid-gap: 2rem;
    justify-content: center;
    padding-left: 0;
}

.game-project-cards > li {
    height: 10rem;
    position: relative;
    background-size: cover;
    border-radius: 0.5rem;
    list-style-type: none;
    box-shadow: 0 3px 4px rgba(0,0,0,0.4);
    transition: 0.1s ease-out;
}

.game-project-cards > li:hover {
    transform: scale(1.02);
}

.game-project-info {
    border-radius: 0.5rem;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background-color: #070707;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    padding: 1rem 1rem;
    color: #fff2cc;
    cursor: pointer;
    text-shadow: 0 2px 2px rgba(0,0,0,0.5);
    line-height: 1.25rem;
}

.game-project-info .title {
    color: white;
    font-size: 1.4rem;
    display: block;
    margin: 0.2rem 0 0.4rem 0;
    font-family: 'Bahnschrift', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

.game-project-info .id {
    color: #fff2cc;
    font-size: 0.9rem;
    display: block;
    margin: 0.2rem 0 0.4rem 0;
    text-shadow: 0 2px 2px rgba(0,0,0,0.5);
}

.game-project-info .game-icon {
    width: 65px;
    height: 65px;
    border-radius: 0.5rem;
    position: absolute;
    right: 5.7%;
    bottom: 11%;
}