* {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: normal !important;
    overflow: hidden;
}

body {
    margin: 0;
    height: 100vh;
}

.background {
    width: 100vw;
    height: 100vh;
}

.nav {
    position: fixed;
    width: 100vw;
    list-style: none;
    display: flex;
    flex-direction: column;
    z-index: 1;
    margin: auto;
    background: white;
}

.navList {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-direction: row;
}

a {
    color: black;
    text-decoration: none;
    cursor: pointer;
}



.central {
    background-color: white;
    border: black 2px solid;
    width: 200px;
    min-width: 200px;
    border-radius: 5px;
    margin: auto;
    /* transform: translatey(-50%); */
    margin-top: 150px;
    position: relative;
    text-align: center;
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.guessRepresentation {
    flex-grow: 1;
    min-height: 175px;
    border: black 2px solid;
    border-radius: 5px;
    font-size: small;
    margin-top: 10px;
}

.score {
    position: relative;
    margin-top: 50%;
    transform: translateY(-50%)
}

.inputHolder {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
}

#guessValue1 {
    color: red;
}

#guessValue2 {
    color: green;
}

#guessValue3 {
    color: blue;
}

.guessInput {
    border: black 2px solid;
    flex-grow: 1;
    padding: 0;
    text-align: center;
}

.submitBtn {
    background-color: white;
    border: black 2px solid;
    min-width: 112px;
    border-radius: 5px;
    margin: auto;
    /* transform: translatey(-50%); */
    /* top: 40%; */
    position: relative;
    text-align: center;
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    cursor: pointer;
    margin-top: 10px;
}

.dismissInstructionBtn {
    background-color: white;
    border: black 2px solid;
    width: 200px;
    min-width: 200px;
    border-radius: 5px;
    margin: auto;
    position: relative;
    text-align: center;
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    cursor: pointer;
}

.fullScreenDiv {
    position: fixed;
    flex-direction: row;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(255 255 255 / 94%);
    z-index: 10;
    display: none;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    overflow: auto;
    padding-bottom: 100px;
}

.instructionText {
    max-width: 400px;
    margin: auto;
    margin-top: 100px;
    position: relative;
    height: 80%;
    white-space: normal;
    padding: 20px;
}

.statsBtn {
    position: absolute;
    left: 10px;
    top: 60px;
    max-width: 50px
}

.instructionsBtn {
    position: absolute;
    right: 10px;
    top: 60px;
    max-width: 50px
}

th,
tr {
    text-align: left;
}

.answerValue {
    border: black 2px solid;
    border-radius: 5px;
    background: white;
    min-width: 20%;
    margin: 5px;
    text-align: left;
    padding-left: 5px;
    font-size: 1rem;
}

.answerValue:nth-child(1) {
    color: red;
}

.answerValue:nth-child(2) {
    color: green;
}

.answerValue:nth-child(3) {
    color: blue;
}

.overallAnswer {
    font: 3rem;
    width: 50%;
    padding: 5px;
    text-align: center;
    margin: auto;
    color: black !important;
}

.individualHistoricScore {
    display: inline-block;
    width: auto;
    min-width: 39px;
    border: black 1px solid;
    border-radius: 3px;
    margin-right: 5px;
    padding: 2px;
    text-align: center;
    font-size: 0.75rem;
}

.smaller {
    margin-right: 1px;
    min-width: 20px;
    font-size: 0.5rem;
    padding: 1px;
}

.historicAll {
    max-height: 100px;
    overflow-y: scroll;
}


/* //scroll bars */


/* width */

::-webkit-scrollbar {
    width: 5px;
}


/* Track */

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: gray;
    border-radius: 10px;
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: black;
}


/* The snackbar - position it at the bottom and in the middle of the screen */

#snackbar {
    visibility: hidden;
    /* Hidden by default. Visible on click */
    min-width: 250px;
    /* Set a default minimum width */
    transform: translatex(-50%);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    border: 1px solid black;
    background: white;
    justify-content: center;
    border-radius: 5px;
    max-width: 380px;
    padding: 10px;
    position: fixed;
    /* Sit on top of the screen */
    z-index: 1;
    /* Add a z-index if needed */
    left: 50%;
    /* Center the snackbar */
    top: 30px;
    /* 30px from the bottom */
    box-shadow: 0 0 10px #00000033;
    z-index: 10;
    font-size: large;
}


/* Show the snackbar when clicking on a button (class added with JavaScript) */

#snackbar.show {
    visibility: visible;
    /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}


/* Animations to fade the snackbar in and out */

@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }
    to {
        top: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }
    to {
        top: 0;
        opacity: 0;
    }
}

.individualInputHolder {
    flex-grow: 1;
    padding: 0;
    text-align: center;
    width: 30%;
    height: 75px;
    display: flex;
    flex-direction: column;
}

.adjusterUpHolder{
    display: flex;
}

.adjusterDownHolder{
    display: flex;
}

.adjusterUp {
    border: black 2px solid;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    flex-grow: 1;
}

.adjusterDown {
    border: black 2px solid;
    border-radius: 0 0 5px 5px;
    cursor: pointer;
    flex-grow: 1;
}

.adjusterDown:active,
.adjusterUp:active {
    -moz-box-shadow: inset 0 0 10px #000000;
    -webkit-box-shadow: inset 0 0 10px #000000;
    box-shadow: inset 0 0 10px #000000;
}

.adjusterIcon {
    margin: auto;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
    font-weight: bold !important;
}