body {
    background-color: rgb(16, 97, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Courier New', Courier, monospace;
    padding: 3px;
    margin: 3px;
}
#controls {
    display: flex;
    flex-direction: column;
    background-color: antiquewhite;
    color: #bf7e27;
    align-items: center;
    justify-content: center;
    border: .3rem solid rgb(16, 97, 0);
    border-radius: 30px;
    box-shadow: 0px 0px 30px inset rgb(16, 97, 0);
    padding: 13px;
    margin: 10px;
}
legend {
    font-size: x-large;
    padding: .5rem;
    margin: 0;
    color: rgb(16, 97, 0);
    background-color: antiquewhite;
    border-radius: 42%;
    border: .1rem solid rgb(16, 97, 0);
    box-shadow: 
        0px 0px 3px rgb(16, 97, 0),
        0px 0px 10px inset rgb(16, 97, 0);
    text-shadow: 0 1px 3px rgb(16, 97, 0);
    
}
input[type=radio], label, input[type=checkbox] {
    cursor: pointer;
}
#inputs, p{
    display:flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: stretch;
    margin: 3px;
    padding: 0;
}
#inputs{
    border-bottom: 2px solid;
    width: 100%;
}
button {
    appearance: none;
    margin-top: 10px;
    width: 100px;
    margin: 0 15px;
    cursor: pointer;
    background-color: rgb(16, 97, 0);
    border-radius: 13px;
    border: 1px solid rgb(16, 97, 0);
    color: antiquewhite;
    font-size: large;
    font-weight: bold;
    transition: 133ms;  
}
#clear-btn {
    background-color: rgb(247, 204, 148);
    color:  rgb(16, 97, 0);
}
button:hover, #clear-btn:hover{
    background-color: rgb(255, 145, 0);
    box-shadow: 0 0 7px inset antiquewhite;
    color:  rgb(16, 97, 0);
    border-radius: 13px;
    
}
#board {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 3px;
    align-items: center;
    color:antiquewhite;
}
#results {    
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 5px;
}
#result-index {
    margin: 3px;
    padding: 3px;
}

.result-p {
    padding: 3px;
    margin: 0 3px;
    font-size: larger;
    border-radius: 50%;
    border: 1px solid antiquewhite;
    background-color: rgb(247, 204, 148);
    color: black;
}
.max {
    background-color: rgb(255, 145, 0);
    color: rgb(16, 97, 0);
}

