/* aarons code*/

body {
    height: 100%;
    width: 95%;
    background-color: rgba(109, 210, 109, 0.5);
    padding: 0%;
    font: 1em sans-serif;
}

#question {
    font-size: x-large;
}

#description {
    font-size: large;
}

/* treys code*/
div.options {
    width: 80%;
    height: 50%;
    display: flex;
    flex-direction: row;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    margin-top: 0px;
    margin: auto;
}

div.answerBox {
    width: 400px;
    height: 200px;
    margin-right: 25px;
    margin-bottom: 25px;
    margin-left: 25px;
    margin-top: 25px;
}

button {
    height: 100%;
    width: 100%;
    color: black;
    background-color: white;
    cursor: pointer;
    border-radius: 30px;
    font-size: 20px;
    font-family: 'Quantico', sans-serif;
}

#answerChoice0 {
    border: solid rgb(255, 173, 173) 10px;
}

#answerChoice1 {
    border: solid rgb(82, 113, 255) 10px;
}

#answerChoice2 {
    border: solid rgb(255, 172, 120) 10px;
}

#answerChoice3 {
    border: solid rgb(255, 222, 89) 10px;
}

#progressBarBackground {
    align-self: center;
    width: 100%;
    height: 30px;
    background-color: lightgreen;
    border-radius: 50px;
    display: block;
}

#progressBar {
    align-self: center;
    width: 1%;
    height: 30px;
    background-color: green;
    border-radius: 50px;
}

#screen {

    bottom: 100%;
    top: 100%;
    left: 100%;
    right: 100%;
    size: 100%;
}

#correctOverlay, #incorrectOverlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    display: none;
}
#correctOverlay{
    background: rgb(51, 204, 51, 0.9);
}

#incorrectOverlay{
    background: rgb(182, 184, 182, 0.9);
}

#correctText, #incorrectText{
    background-color: white;
    display: none;
    width: 150px;
    height: 150px;
    position: absolute;
    right: 500px;
    top: 400px;
    text-align: center;
    font-size: 30px;
    z-index: 1;
}

@keyframes correct{
    from{display: none;}
    to{
        display:block;
        color: green;
    }
}
#finishHeader, #finishDescription, #finishScore, #correctQuestions, #totalQuestions {
    display: none;
    /* position: absolute; */
}

#finish {
    display: none;


}