

  * , *::after , *::before {
      box-sizing: border-box;
      padding: 0;
      margin: 0;
}

body {
    direction: rtl;
    background-color: #fff;
    font-size: 1.5rem;
    height: 100vh;
}
button {
    cursor: pointer;
}
.box{
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 80px;
    width: 400px;

}
#red{
    background-color: #B22234;
    height: 50px;
    width: 50px;
}
#green{
    background-color: #008081;
    height: 50px;
    width: 50px;
}
#blue{
    background-color: #1F579C;
    height: 50px;
    width: 50px;
}
#yellow{
    background-color: #CFA64D;
    height: 50px;
    width: 50px;
}
#gray{
    background-color: #3d3c3b;
    height: 50px;
    width: 50px;
}
#dark{
    background-color: #2D4263;
    height: 50px;
    width: 50px;
}

.default {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

#white {
    background-color: #F9F9F9;
    height:  50px;
    width:  50px;
}
