body{
    font-size: 20px;
    font-family: monospace;
    background-color: rgb(235, 151, 72);
}

#container{
    margin : 20px auto;
    background-color: rgb(235, 151, 72);
    height: 300px;
    width : 700px;
    border-radius: 5px;
    border-block-color: black;
    /* box-shadow: 0px 5px 15px 0px; */
    position: relative;
}
#start{
    font-size: 1.5em;
    font-weight: bolder;
    word-break: break-all;
    width:250px;
    height:150px;
    border : 2px solid lightgrey;
    text-align: center;
    cursor: pointer;
    position: absolute;
    left:450px;
    top:100px;
    color : lightgrey;
}
#start:hover{
    border: 3px solid lightseagreen;
    color : lightseagreen;
}

#qImg{
    /* width : 200px; */
    height : 200px;
    position: absolute;
    left : 0px;
    top : 0px;
}
#qImg img{
    width : 200px;
    /* height : 200px; */
    border-top-left-radius: 5px;
}

#question{
    width:600px;
    height : 125px;
    position: fixed;
    top: 110px;
    left:400px;
}
#question p{
    margin : 0;
    padding : 15px;
    font-size: 1.25em;
}

#choices{
    width : 600px;
    position: relative;
    right : -290px;
    top : 200px;
    padding : 10px
}
.choice{
    display: inline-block;
    width : 135px;
    text-align: center;
    border : 1px solid grey;
    border-radius: 5px;
    cursor: pointer;
    padding : 5px;
}
.choice:hover{
    border : 2px solid grey;
    font-weight: bold;
}

#timer{
    position: absolute;
    top :180px;
    left: 10px;
    width : 200px;
    bottom : 0px;
    text-align: center;
}
#counter{
    font-size: 3em;
}
#btimeGauge{
    width : 150px;
    height : 10px;
    border-radius: 10px;
    background-color: lightgray;
    margin-left : 25px;
}
#timeGauge{
    height : 10px;
    border-radius: 10px;
    background-color: mediumseagreen;
    margin-top : -10px;
    margin-left : 25px;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color:rgb(143, 155, 148);
    color: white;
    text-align: center;
   padding-top: 30px;
    font-family: monospace;
 }

#scoreContainer{
    margin : 20px auto;
    background-color: white;
    opacity: 0.8;
    height: 300px;
    width : 700px;
    border-radius: 5px;
    box-shadow: 0px 5px 15px 0px;
    /* position: relative; */
    position: absolute;
    top: 40px;
    left: 280px;
    opacity: 1;

    display: none;
}
/* #scoreContainer img{
    position: absolute;
    top:100px;
    left:325px;
} */
#scoreContainer p{
    /* text-align: center; */
    position: relative;
    display: block;
    width : 200px;
    height :59px;
    top:100px;
    left:250px;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
}

#countdown{
    width : 150px;
    height : 10px;
    border-radius: 10px;
    background-color: lightgray;
    margin-left : 25px;
}
#countdown{
    height : 10px;
    border-radius: 10px;
    background-color: mediumseagreen;
    margin-top : -100px;
    margin-left : 25px;