@import url('https://fonts.googleapis.com/css?family=Open+Sans');

body{
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to bottom right, #673AB7, #3F51B5, #489FB6);
}
h1{
    text-align: center;
    color: #ffffff;
    font-size: 72px;
    text-shadow: 2px 2px 1px #000;
    margin-top: 20px;
}
#mainBox{
    width: 600px;
    height: 450px;
    background-color: #336699;
    margin:5px auto;
    border-radius: 10px;
    box-shadow: 2px 2px 5px black;
    position: relative;
    padding: 20px;
}
#scoreBox{
    background-color: #fff;
    box-shadow: 2px 2px 5px black;
    position: absolute;
    padding:10px;
    border-radius: 30px;
    left: 500px;   
}
#correctBox{
    background-color:lightgreen;
    position: absolute;
    padding:10px;
    color: #fff;
    left: 280px;
    border-radius: 5px;
box-shadow: 2px 2px 5px black;
    display: none;

}
#wrongBox{
    background-color: lightcoral;
    position: absolute;
    padding: 10px;
    color: #fff;
    left: 280px;
    border-radius: 5px;
box-shadow: 2px 2px 5px black;
    display: none;
}
#questionBox{
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.25) 50%);
    height: 120px;
    width: 450px;
    border-radius: 30px;
    box-shadow: 2px 2px 5px black;
    margin: 50px auto 10px auto;
    font-size: 100px;
    color: #fff;
    text-align: center;
}
#instructionBox{
    border-radius: 30px;
box-shadow: 2px 2px 5px black;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.25) 50%);
    height: 50px;
    width: 450px;
    margin:10px auto;
    text-align: center;
    line-height: 45px;
    color:#fff;
}
#choiceBox{
    height: 100px;
    width: 450px;
    margin: 5px auto;
}
.box{
    height: 85px;
    width: 85px;
    border-radius: 30px;
box-shadow: 2px 2px 5px black;
    background: linear-gradient(45deg, rgb(255, 255, 255) 50%, rgb(226, 226, 226) 50%);
    float: left; 
    margin-right: 36px;
    cursor: pointer;
    text-align: center;
    line-height:80px;
    
}
.box:hover , #startresetBox:hover{
    background-color:lightblue;
    color:#ff0000;
}
.box:active , #startresetBox:active{
    background-color:lightgray;

}
.box:last-child{
    margin-right: 0;
}

#startresetBox{
    border-radius: 30px;
box-shadow: 2px 2px 5px black;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.25) 50%);
    position: relative;
    margin: 0 auto;
    width: 85px;
    padding: 20px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}
#timeremainingBox{
    border-radius: 30px;
box-shadow: 2px 2px 5px black;
    background: linear-gradient(45deg, rgb(255, 255, 255) 50%, rgb(226, 226, 226) 50%);
    position: absolute;
    top: 365px;
    width: 185px;
    padding: 20px;
    text-align: center;
    display: none;
}

#gameOverBox{
    position: absolute;
    height: 200px;
    width: 500px;
    border-radius: 30px;
    box-shadow: 2px 2px 5px black;
    background: linear-gradient(to bottom right, #ff0000, #3F51B5, #489FB6);
    text-align: center;
    font-size: 32px;
    top: 120px;
    left: 68px;
    display: none;
    
}