body {
    display: flex;
    flex-direction: column;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    align-items: center;
}

.page-title {
    font-size: 1.5rem;
}

.box-with-games {
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 10px;
    gap: 1.5rem;
    padding: 0.5rem 4rem;
    
}

.container-game {
    flex: 1 0 45%;
    justify-content: center;
    /* overflow: hidden; */
    width: 400px;
}

.container-game img {
    background-color: white;
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
}


.container-game img:hover {
    cursor: pointer;
}