body{
    font-size: 20px;
    font-family: monospace;
}

#container{
    margin : 20px auto;
    background-color: white;
    height: 590px;
    width : 790px;
    border-radius: 5px;
    box-shadow: 0px 5px 15px 0px;
    position: relative;
}
#start{
    font-size: 1.3em;
    font-weight: bolder;
    word-break: break-all;
    width:350px;
    height:300px;
    border : 2px solid lightgrey;
    text-align: center;
    cursor: pointer;
    position: absolute;
    left:200px;
    top:50px;
    color : Red;
	
}
#start:hover{
    border: 3px solid lightseagreen;
    color : lightseagreen;
	background: yellow;
}

#qImg{
    width : 330px;
    height : 330px;
    position: absolute;
    left : 1px;
    top : 1px;
	margin: 1px;
}
#qImg img{
    width : 300;
    height : auto;
    border-top-left-radius: 5px;
	align : center;
}

#question{
    width:500px;
    height : 125px;
    position: absolute;
    right:0;
    top:0;
}
#question p{
    margin : 0;
    padding : 15px;
    font-size: 1.1em;
}

#choices{
    width : 480px;
    position: absolute;
    right : 0;
    top : 250px;
    padding : 10px
}
.choice{
	background: lightyellow;
    display: inline-block;
    width : 475px;
	height: 55px;
    text-align: center;
	
    border : 1px solid grey;
    border-radius: 5px;
    cursor: pointer;
    padding : 0px;
	margin-left : 5px;
	margin-top : 5px;
	 
}
 




.choice:hover{
    border : 2px solid grey;
    font-weight: bold;
	background : yellow;
}

#timer{
    position: absolute;
    height : 100px;
    width : 200px;
    bottom : 0px;
    text-align: center;
}
#counter{
    font-size: 35px;
}
#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;
}
#progress{
    width : 500px;
    position: absolute;
    bottom : 0px;
    right : 0px;
    padding:5px;
    text-align: right;
}
.prog{
    width : 20px;
    height : 20px;
    border: 1px solid #000;
    display: inline-block;
    border-radius: 50%;
    margin-left : 5px;
    margin-right : 5px;
}
#scoreContainer{
    margin : 20px auto;
    background-color: white;
    opacity: 0.8;
    height: 500px;
    width : 800px;
    border-radius: 5px;
    box-shadow: 0px 5px 15px 0px;
    position: relative;
    display: none;
}
#scoreContainer img{
    position: absolute;
    top:100px;
    left:325px;
}
#scoreContainer p{
    position: absolute;
    display: block;
    width : 120px;
    height :159px;
    top:130px;
    left:295px;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
	background:red;
}


.button {
    border: none;
    color: black;
    background-color: #4CAF50;
    padding: 10px 20px;
    cursor: pointer;
    border: 2px solid #4CAF50;
    -moz-border-radius: 16px;
    -webkit-border-radius: 16px;
    border-radius: 16px;
	font-size: 20px;
}
 
.button:hover {
    color: #4CAF50;
    background-color: #fff;
    border: 2px solid #4CAF50;
}

 














