.jeux1 {
    background-color: rgb(235, 230, 230);
    display: flex;
    flex-direction: row;
    justify-content: left;
    justify-content: space-evenly;
    flex-wrap: wrap;

}
.nb-tries, .result, .memory, .chrono {
    flex-basis: 20%;
    text-align: center;
    font-size: 20px;
    padding: 30px 0px 10px 0px;
    
}
.nb-tries {
    text-align: left;
}
.memory{
    flex-basis: 15%;
    padding: 20px 0px;
}
.result {
    flex-basis: 36%;
    text-align: left;
}
.msg {
    color : red;
    font-weight: 900;
}
.card {
    width :150px;
    height : 150px;
    background-color: rgb(231, 143, 143);
    margin: 10px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
h4 {
    font-size: 30px;
    font-weight: 900;
    display: none;
}
.memory p {
    border: 1px solid black;
    border-radius: 4px;
    /* width : 35%; */
    margin: auto;
    padding: 10px;
    background-color: rgb(202, 199, 199);
}
.memory p:hover {
    background-color: rgb(202, 199, 199);
    box-shadow: 1px 1px 10px grey;;
    cursor: pointer;

}
.time {
    display: inline-block;
}
@media screen and (max-width: 1150px) {
    .nb-tries {
        flex-basis: 100%;
        text-align: center;
    }
    h3 .memory, .chrono{
        flex-basis: 100%;
    }
    .result {
        flex-basis: 100%;
        text-align: center;
        
    }
}