body
{
    background-color: rgb(243, 232, 232);
}
h5
{
    color: white;
    background-color: cadetblue;
    border-color: cadetblue;
}
ul 
{
    list-style-type: none;
    padding: 0;
    background-color: white;
}
li 
{
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 1px;
    background-color: cadetblue;
    color: white;
    font-size: 1em;
    line-height: 1.5;
    cursor: pointer;
}
/*
* reducing opacity for all clickable entity when user hover mouse on it to have better user experience.
*/
li:hover,button:hover,#viewHighScore:hover
{
    opacity : 0.75;
}

/*
* all buttons to have consistent styling
*/
#startQuizBtn,#initialSubmit,#goBack,#clearHighScore
{
    color: white;
    background-color: cadetblue;
    border-color: cadetblue;
    cursor: pointer;
}
#cardBody
{
    color: cadetblue;
    background-color: white;
    border-color: cadetblue; 
}
#initialText
{
    border-color: cadetblue;
}
#viewHighScore
{
    cursor: pointer;
}
.hide 
{
    display: none;
}
.right
{
    background-color: green;
}
.wrong
{
    background-color: red;
}

/*
* question result correct/wrong need to be displayed at right end of selected option hence floating it right.
*/
.result
{
    float: right;
}
