body {
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
    background: rgb(230, 230, 230);
}

.panel {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#progress {
    color: black;
}

.fin-results {
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    /* border: 1px solid black; */
    background-color: whitesmoke;
    color: black;
    height: auto;
    width: 200px;
    visibility: hidden;
}

.results:hover {
    color: white;
    /* background-color: rgb(13, 161, 0); */
}

.timer {
    background-color: gray;
}

.button-small {
    font-size: 85%;
}

.butt {
    border-radius: 10px;
    border: none;
    min-width: none;
    min-height: 30px;
    background: lightgray;
    color: black;
}

.butt:hover {
    color: white;
    background: darkgray;
    border: 1px solid black;
}

.pure-button-container {
    box-shadow: 1px 1px 6px gray;
    margin: 10px;
    padding: 5px;
    width: 80vw;
    height: 10vh;
    background-color: rgb(230, 230, 230);
    font-size: 100%;
    text-align: center;
    height: auto;
}

.result {
    margin: 10px;
    padding: 5px;
    width: 80vw;
    height: 10vh;
    text-align: center;
    font-size: 50px;
    /* background: whitesmoke; */
}

.restart {
    border-radius: 15px;
    height: 5.5vh;
    width: auto;
}

.option-container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* justify-content: space-around; */
    margin: 10px;
    padding: 5px;
    text-align: center;
    width: 80vw;
    height: 20vh;
    background-color: rgb(230, 230, 230);
    color: black;
    font-size: 3.4vh;
}

.option {
    padding: 10px;
    width: 15vw;
    height: 10vh;
    font-size: larger;
    background-color: rgb(230, 230, 230);
    border-radius: 30px
}

.option:hover {
    background-color: lightgoldenrodyellow;
}

.navigation {
    width: 80vw;
    height: 10vh;
    margin: 10px;
    padding: 5px;
    display: flex;
    justify-content: space-around;
    background-color: rgb(230, 230, 230);
}

.evaluate,
.next {
    width: 30vw;
    height: 8vh;
    padding: 5px;
    font-size: larger;
    border-radius: 20px;
}

.evaluate {
    color: white;
    background: rgb(13, 161, 0);
}

.next {
    color: white;
    background: rgb(145, 0, 0)
}
