* {
    touch-action: manipulation;
}
body {
    font-family: "Franklin Gothic", sans-serif;
    font-weight: bold;
    color: black;
    margin-bottom: 30px;
}
button {
    font-weight: bold;
    border: 0px;
    border-radius: 5px;
}
.cell {
    border: 2px solid;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: xx-large;
    border-color: #D3D6DA; 
    background-color: transparent;
    color: black;
}
.selected {
    border-color: #878A8C;
}
.alphabet, .board {
    justify-content: center;
    align-items: center;
}
.letter {
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    line-height: 50px;
    

    height: 50px;
    width: 35px;
    background-color:#D3D6DA;
    color: black;
    font-size: large;
}
.letter:hover {
    cursor:pointer;
}
.board {
    border-spacing: 7.5px;
    margin-bottom: 0px;
}
.container{
    justify-content:center;
    align-items: center;
    display: flex;
    white-space: pre;
    flex-direction: column;
}
.green {
    background-color:#6AAA64;
    border-color: #6AAA64;
    color: white;
}
.yellow {
    background-color:#C9B458;
    border-color:#C9B458;
    color: white;
}
.grey {
    background-color:#777C7E;
    border-color: #777C7E;
    color: white;
}
#Enter, #Backspace {
    width:fit-content;
    padding-left: 10px;
    padding-right: 10px;
}
#rulesText {
    font-weight: normal;
    justify-content: center;
    display: block;
    width: 400px;
    margin: auto;
}
#title {
    font-size: 75px;
    font-weight: bolder;
    font-family: serif;
    margin: 10px;
}
#distribution, #played, #percentage {
    font-weight: normal;
}
#rules {
    margin:auto;
    width:50%;
}
#reset {
    height: 40px;
    font-weight: bold;
    border: 0px;
    border-radius: 5px;
    background-color:#D3D6DA;
    display: flex;
    text-align: center;
    vertical-align: middle;
    line-height: 40px;
    padding-left: 10px;
    padding-right: 10px;
}
#reset:hover {
    cursor: pointer;
}
#result {
    font-size: x-small;
    height: 15px;
}
#easyMode {
    position: relative;
    vertical-align: middle;
}