/* font-family: 'Courgette', cursive; */

body {
    font-family: 'Courgette', cursive;
    font-size: 20px;
    background-color: rgb(0, 54, 90);
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url("../images/init-BG.jpg");
}

h1 {
    float: left;
    font-family: 'Courgette', cursive;
    font-size: 86px;
    margin: 0px;
    padding: 0;
    position: relative;
    z-index: 20;
    color: #fff;
    text-shadow: black -2px 3px 1px;
}
section {
	color: antiquewhite;
	padding: 4%;
	margin: 0 7% 3% 7%;
	position: relative;  
    top: -18px;  
    line-height: 35px;
    clear: both;
}

.sectionBG {
    background-color: rgb(0, 54, 90);
    opacity: .85;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#qText {
    position: relative;
}
.answer {
	cursor: pointer;
	margin: 5px;
}
#result {
	position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: #193441;
    color: white;
    padding: 8%;
    box-sizing: border-box;
    font-size: 30px;
    line-height: 42px;
    background-repeat: no-repeat;
    background-position: right top; 
}

result.correctResult {
    background-image: url("../images/check-mark.png");
     background-size: 250px 250px;
}
#result.wrongResult {
    background-image: url("../images/red-x.png");
     background-size: 230px 230px;
}
#result.timesUp {
    background-image: url("../images/clock.png");
     background-size: 230px 230px;
}

#result .gameOverText {
    display: block;
    font-size: smaller;
    position: absolute;
    bottom: 30px;
    width: 85%;
}
button#newGame {
    position: absolute;
    right: 30px;
    top: 10px;
}

.scoreboard {
    float: left;
    margin: 2%;
    background-color: rgb(0, 54, 90);
    width: 20%;
    padding: 15px 6px;
    height: 52px;
    box-sizing: border-box;
    text-align: center;
    color: white;
}


#score {
    font-size: small;
    padding-top: 8px;
}
#choices {
    display: none;
}
#choices ol {
    position: relative;
}

button {    
    display: block;
    margin: auto;
    padding: 2%;
    font-size: 48px;
    font-family: 'Courgette', cursive;
    margin-top: 4%;
    background-color: #280a02;
    border-color: #666;
    border-radius: 7px;
    color: white;
}

/* responsive styles! */
@media screen and (max-width: 750px) {
    section {
        color: antiquewhite;
        padding: 4%;
        margin: 0 7% 3% 7%;
        position: relative;  
        top: -18px;  
        line-height: 35px;
        clear: both;
    }
    
    .sectionBG {
        background-color: rgb(0, 54, 90);
        opacity: .85;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    #timer {
        background-color: rgb(0, 54, 90);
        font-size: 12px;
    }
    h1 {
        font-size: 65px;
    }
    section {
        top: 0;
    }
}
@media screen and (max-width: 550px) {
    section {
        color: antiquewhite;
        padding: 4%;
        margin: 0 7% 3% 7%;
        position: relative;  
        top: -18px;  
        line-height: 35px;
        clear: both;
    }
    
    .sectionBG {
        background-color: rgb(0, 54, 90);
        opacity: .85;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    #score {
        background-color: rgb(0, 54, 90);
        clear: both;
    }
    .scoreboard {
        
        width: 35%;
    }
}
