.board{
   height: 500px;
   width: 500px;
   display: grid;

}





 

body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    background-color: rgb(108, 110, 112);
    
}


button-container {
    display: flex;
    justify-content: center;
    
}



color-container {
    display: flex;
    justify-content: flex-start;
    justify-content: space-evenly;
    align-content: center;
    margin: 30px;
    height: 70px;
   width: 500px;
   border: medium solid black;
   background-color: rgb(108, 110, 112);
   
}
    #white {
        background-color: white;
        width: 50px;
        height: 50px;
        margin-top: 10px;
    }
    #black {
        background-color: black;
        width: 50px;
        height: 50px;
        margin-top: 10px;
    }
    #red {
        background-color: red;
        width: 50px;
        height: 50px;
        margin-top: 10px;
    }
    #blue {
        background-color: blue;
        width: 50px;
        height: 50px;
        margin-top: 10px;
    }
    #yellow {
        background-color: yellow;
        width: 50px;
        height: 50px;
        margin-top: 10px;
    }
    #green {
        background-color: green;
        width: 50px;
        height: 50px;
        margin-top: 10px;
    }

button {
    margin-top: 20px;
    width: fit-content;
    margin-right: 6px

}


#white{
    background-color: white;
}