.main{
    display: flex;
    justify-content: center;
}
.conteneur{
    /* border: 20px ridge #a52a2a; */
    border: 20px groove #a52a2a;
    display: grid;
    grid-template-columns: repeat(10,80px);
    grid-template-rows: repeat(10,80px);
}
.conteneur>div{

    display: flex;
    justify-content: center;
    align-items: center;
}

.blanc{
    background-color:#f5deb3;
}
.noir{

    background-color:#000000;
}

.jeton_noir{
    height: 58px;
    width: 58px;
    border-radius: 50%;
    background-color:#000000;
}

.jeton_blanc{
    height: 58px;
    width: 58px;
    border-radius: 50%;
    background-color:#fff;
}

.nouvelle_partie{
    font-size: 40px;
    color: #000000;
    height: 250px;
    width: 250px;
    background-color:#fffa9c;
    border: 20px groove #a52a2a;
    margin: 40px;
    cursor: pointer;
}

.blanc_jouer{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    font-weight: bold;
    color: #000000;
    height: 250px;
    width: 250px;
    background-color:#fff;
    border: 20px groove #a52a2a;
    margin: 40px;
    text-align: center;
}

.actions{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    
    
}
button{
    height: 100%;
    width: 100%;
    background-color: #fffa9c;
    font-size: 30px;
    color: #000000;
    cursor: pointer;
}


