body{
    display: flex;
    align-items: center;
    justify-content: center;
    
    flex-direction: column;
    background-color: blanchedalmond;
}

.main{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;

    gap: 100px;
}

.rightside, .leftside{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h1{
    color: rgb(51,50,50);
    font-weight: bolder;
    text-decoration: dotted;
    font-size: 40px;

    text-decoration-style: wavy;
    text-decoration: underline;

}

.board{
    background-color: rgb(51,50,50);

    display: flex;
    justify-content: center;
    flex-direction: row;

    height: 500px;
    width: 500px;
    
    gap: 10px;

    border: solid white 3px;
    border-radius: 25%;
}

.left, .right, .middle{
    display: flex;
    justify-content: center;
    flex-direction: column;

    gap: 20px;
    padding: 15px;
}

.left button, .right button, .middle button{
    background-color: rgb(51,50,50);
    border: solid grey 2px;

    width: 100px;
    height: 100px;

    padding: 20px;
    font-size: 50px;
    font-weight: bolder;
    color: blanchedalmond;
}
.choices{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.choices button{
    width: 120px;
    font-size: 20px;
    background-color: rgb(51,50,50);
    color: antiquewhite;
    padding: 10px;
}

.choices button:focus{
    background-color: rgb(88, 88, 7);
    color: rgb(51,50,50);
}

.modes{
    display: flex;
    justify-content: center;
    flex-direction: row;

    margin: 0px;
}

.player{
    display: flex;
    justify-content: center;
    flex-direction: row;

    margin: 15px;
    margin-bottom: 20px;
    margin-top: 3px;
}

.player button{
    padding: 10px;
    font-size: 20px;
}

.player button:focus{
    background-color: rgb(88, 88, 7);
    color: rgb(51,50,50);
}

.message{
    color: rgb(51,50,50);
    font-weight: bolder;
    text-decoration: dotted;
    font-size: 35px;
    margin: 5px;
    padding: 10px;
}

.rightside{
    gap: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.stats{
    background-color: antiquewhite;
    padding: 15px;
    border: solid black 3px;
    font-size: 18px;
    font-weight: bold;
}

h3{
    font-size: 30px;
    font-weight: bold;

    margin-top: 0px;
}

.notes{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.lower{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.resetBTT{
    width: 120px;
    font-size: 20px;
    background-color: rgb(51,50,50);
    color: antiquewhite;
    padding: 10px;
}

.resetBTT:active{
    background-color: rgb(88, 88, 7);
    color: rgb(51,50,50);
}


h2{
    font-size: 30px;
    font-weight: bold;

    margin-top: 0px;
}

.text1, .text2, .text3, .text4, .text5, .text6, .text7{
    font-size: 20px;
    
}

.diff_select{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 5px;
}

.diff_label{
    font-size: 18px;;
    font-weight: bold;
}

.diff{
    border: solid rgb(51,50,50) 2px;
    background-color: blanchedalmond;
    border-radius: 5%;
    padding: 15px;
    color: rgb(51,50,50);
}

.diff{
    font-size: 15px;
    background-color: rgb(51,50,50);
    color: antiquewhite;
    padding: 10px;
}