body {
    font-size: 14px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#container {
    margin: 20px auto;
    background-color: white;
    height: 300px;
    width: 540px;
    border-radius: 8px;
    box-shadow: 0px 8px 24px 0px;
    position: relative;
}

#start {
    font-size: 1.5em;
    font-weight: bolder;
    word-break: break-all;
    width: 300px;
    height: 40px;
    border: 2px solid lightseagreen;
    padding-top: 10px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    left: 120px;
    top: 120px;
    color: lightblue;
}

#start:hover {
    color: lightseagreen;
}

#qImg {
    width: 150px;
    height: 150px;
    position: absolute;
    left: 0px;
    top: 0px;
}

#qImg img {
    width: 150px;
    height: 150px;
    border-top-left-radius: 5px;
}

#question {
    width: 340px;
    height: 125px;
    position: absolute;
    right: 0;
    top: 0;
}

#question p {
    margin: 0;
    padding: 15px;
    font-size: 1.25em;
}

#choices {
    width: 480px;
    position: absolute;
    right: 0;
    top: 145px;
    padding: 10px;
}

.choice {
    display: inline-block;
    width: 100px;
    font-size: 0.9em;
    text-align: center;
    border: 1px solid grey;
    border-radius: 5px;
    cursor: pointer;
    padding: 5px;
}

.choice:hover {
    background-color: lightgray;
}

#timer {
    position: absolute;
    height: 100px;
    width: 200px;
    top: 240px;
    text-align: center;
}

#counter {
    font-size: 2em;
    font-family: monospace;
}

#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: 300px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 5px;
    text-align: right;
}

.prog {
    width: 10px;
    height: 10px;
    background-color: lightgray;
    /* border: 1px solid #000; */
    display: inline-block;
    /* border-radius: 10px; */
    margin-left: 0px;
    margin-right: 0px;
}

#scoreContainer {
    margin: 20px auto;
    background-color: white;
    opacity: 0.9;
    height: 300px;
    width: 520px;
    border-radius: 5px;
    box-shadow: 0px 5px 15px 0px;
    position: relative;
    top: 30px;
    left: 20px;
    display: none;
}

#scoreContainer img {
    position: relative;
    top: 60px;
    left: 280px;
}

#scoreContainer p {
    position: relative;
    display: block;
    width: 480px;
    height: 59px;
    top: 30px;
    left: 20px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: left;
}

#scoreContainer h4 {
    position: relative;
    display: block;
    width: 450px;
    top: 60px;
    left: 20px;
    font-size: 0.8em;
    text-align: right;
}