.horizontal-game-element {
    margin: auto;
    margin-top: 7px;
    width: min(90%, 800px);
    height: 130px;
    background-color: #020202;
    border-radius: 2px;
    overflow: hidden;
    transition-duration: 200ms;
}

.horizontal-game-element:hover {
    background-color: #000000;
}

.horizontal-game-element:hover #thumbnail {
    height: 120%;
    filter: saturate(250%);
    transform: translate(0%, -10%);
}

.horizontal-game-element #thumbnail {
    height: 100%;
    width: 200px;

    object-fit: cover;

    cursor: pointer;

    background-color: rgb(12, 12, 12);
    float: left;

    margin-right: 15px;

    transition-duration: 1000ms;
}

.horizontal-game-element #game-tags {
    opacity: 0.6;
    margin-top: 2px;
    margin-bottom: 22px;
    user-select: none;
}

.horizontal-game-element #game-title {
    margin-bottom: 12px;
}

.horizontal-game-element #play-button {
    padding: 6px 30px;
}