html, body, #root, #main {
    margin: 0;
    padding: 0;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    height: 100%;
    max-height: 100%;
}

option {
    color: black; 
    text-align:center;
}

.guessButton {
    width: 35px;
    height: 45px;
    border: 1px solid black;
    border-radius: 3px 4px;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.keyboardButton {
    min-width: 30px;
    height: 40px;
    border: 1px solid black;
    border-radius: 3px 4px;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.green, .yellow, .black, .keyboardButton, .guessButton {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: black;    
    font-weight: bold;
}

.green {
    background-color:rgb(83, 141, 78);
    color: white;
    text-shadow: 1px 1px black;
}

.blue {
    background-color: royalblue;
    color: white;
    text-shadow: 1px 1px black;
}

.yellow {
    background-color: rgb(181, 159, 59);
    color: white;
    text-shadow: 1px 1px black;
}

.black {
    background-color: #232323;
    color: white;
}

.grey {
    background-color: #787878;
    color: white;
    text-shadow: 1px 1px black;
}

.darkGrey {
    background-color: #343434;
    color: white;
    text-shadow: 1px 1px black; 
}

/* Ag Grid Overrides */
.ag-header-cell-label {
    justify-content: center;
}

.questBox, .questBoxDisplay {
    padding: 10px;
    background-color: #111;
    border: 4px solid gold;
    border-radius: 3px 3px;
}

.goldHeader {
    font-size: 18px;
    font-weight: bold;
    color: gold;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}