body {
    background-image: url("../images/question-marks-background.jpg");
}

#header {
    width: 600px;
    margin: 0 auto;
    background-color:#f4ffeb;
    margin-top: 30px;
    border: 4px solid darkgreen;
    overflow: auto;
}

#headerText1, #headerText2 {
    line-height: 65px;
    text-align: center;
    font-family: 'Sriracha', cursive;
    font-size: 60px;
    padding-top: 20px;
}

#headerText2 {
    line-height: 45px;
    font-size: 40px;
}

#headerPhoto {
    float: left;
    clear: right;
    border-right: 2px solid black;
    display: block;
} 

#mainContentArea {
    width: 600px;
    margin: 0 auto;
    background-color: #ffffff; 
    border-left: 4px solid black;
    border-right: 4px solid black;
    border-bottom: 4px solid black;
    padding-top: 40px;
    padding-bottom: 30px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 18px;
    line-height: 30px;
    overflow: auto;
}

#startDiv {
    text-align: center;
}

#directions {
    font-size: 20px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    line-height: 20px;
    margin-bottom: 20px;
}

.playBtn {
    font-size: 20px;
    padding: 5px 10px;
    background-color: #f4ffeb;
    font-family: 'Sriracha', cursive;
}

.titleCountdown {
    display: inline-block;
    font-weight: bold;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 5px;
    color: black;
}

.showCountdown {
    background-color: black;
    color:#ffffff;
    font-size: 20px;
    font-family: monospace;
    padding: 5px 15px;
    margin: 0px 0px;
    text-align: center;
    display: inline-block;
}

#question {
    font-weight: bold;
}

#questionDiv, #answerDiv, #resultDiv {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

.choice {
    padding-right: 10px;
}

#answerImg {
    margin-top: 20px;
}

#statusMsg {
    font-weight: bold;
}

#resultsTitle {
    font-family: 'Sriracha', cursive;
    font-weight: bold;
    font-size: 22px;
}

/* @media queries go here (bottom of style.css) */
@media only screen and (max-width: 980px) {
    #header, #mainContentArea {
        /* background-color: lightblue; */
        width: 75%;
    }
    
    #answerImg {
        width: 75%;
    }
    
}

@media only screen and (max-width: 768px) {
    /* For medium screen devices */
    #header, #mainContentArea {
        /* background-color: yellow; */
        width: 85%;
    }
    
    #answerImg {
        width: 85%;
    }
}

@media only screen and (max-width: 640px) {
    /* For small screen devices */
    #header, #mainContentArea {
        /* background-color: green; */
        width: 75%;
    }  
    
    #answerImg {
        width: 75%;
    }
} 
