body{
    background-color: #171a21 !important;
    background-image: none !important;
}

.image{
    min-height: 200px;
    min-width: 200px;
    background-position: center;
    background-size: cover;
    display: flex;
    padding: 15px;
    position: relative;
    border-radius: 15px;
    transition-duration: 0.5s;
}
.image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Couleur noire avec une opacité de 0.5 */
    border-radius: 15px;
    transition-duration: 0.5s;
}
.image:hover {
    min-height: calc(200px + 10%);
}.image::before:hover {
     min-height: calc(200px + 10%);
}

.gamelibrary{
    align-content: end;
    font-size: 1.2em;
    padding: 15px;
    position: relative; /* Assurez-vous que le contenu reste au-dessus du voile */
    z-index: 1; /* Assurez-vous que le contenu est au-dessus du voile */
    color: white; /* Couleur du texte */
}