
#body {
    background-color: #F3F0EA;
    margin: 0;
}

.text {

    font-family: 'Varela Round', sans-serif;
    user-select: none;
    color: #F3F0EA;
}

#grid {
    width: fit-content;
    height: auto;
    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 150px);
    grid-column-gap: 5px;

    grid-template-rows: repeat(3, 150px);
    grid-row-gap: 5px;

    background-color: #2E2E2E;
    border: solid;
    border-radius: 6px;
    border-color: #2E2E2E;
    border-width: 5px;
}

#grid > div {

    background-color: #F8F6F4;
    border-radius: 6px;
    font-size: 6.5em;
    line-height: 1.35em;
    font-family: 'Varela Round', sans-serif;
    text-align: center;
    user-select: none;

}

#grid > div:hover {

    background-color: #E1E1E1;
}

#radiocontainer {

    margin: 0 auto 10px auto ;
    width: fit-content;
}

#radiocontainer > label {

    font-family: 'Varela Round', sans-serif;
    user-select: none;
    font-size: 1.5em;
}

#banner {

    border-bottom: 3px solid black;
    background-color: #2E2E2E;
}

#choosetext {

    font-size: 1.5em;

    margin: 0 auto 10px auto ;
    width: fit-content;
}

#title {

    width: fit-content;
    margin: 0 auto;
    font-size: 7em;
}

#status {

    height: 33px;
    width: fit-content;
    margin: 30px auto;

    font-family: 'Varela Round', sans-serif;
    user-select: none;
    font-size: 1.8em;
    font-weight: bold;
    color: #232323;
}

#resetbtn {

    width: 250px;
    height: 100px;
    color: #F8F6F4;
    font-family: 'Varela Round', sans-serif;
    user-select: none;
    font-size: 3em;
    margin: 20px auto 10px auto;
    text-align: center;
    line-height: 2em;
    border-radius: 6px;
    border-color: #353131;

    background-color: #2E2E2E;
}

#resetbtn:active {

    transform: scale(0.99);
}

#resetbtn:hover {

    background-color: #3d3d3d;
}