body,
html {
    margin: 0;
    background-color: #C1C1C1;
    font-family: cursive;
}

#container {
    margin: 0 auto;
    display: flex;
    background-color: #969da0;
    width: 700px;
    max-width: 100%;
    height: fit-content;
    position: absolute;
    top: 50%;
    left: 50%;
    flex-direction: column;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    box-shadow: 0px 5px 0px 0px rgb(3, 65, 99);
}

#header {
    margin: 20px;
}

#correct {
    background-color: #1A9A2E;
    font-size: 18px;
    width: 80px;
    text-align: center;
    color: white;
    padding: 5px;
    margin: 0 auto;
    display: none;
    margin-bottom: 0;
    position: absolute;
    left: 45%;
}

#wrong {
    background-color: rgb(160, 57, 57);
    font-size: 18px;
    width: 80px;
    text-align: center;
    color: white;
    padding: 5px;
    margin: 0 auto;
    display: none;
    margin-bottom: 0;
    position: absolute;
    left: 45%;
}

#score {
    background-color: #D9DE83;
    font-size: 18px;
    text-align: center;
    color: #7A7545;
    width: 100px;
    padding: 5px;
    cursor: default;
    box-shadow: 0px 5px 0px 0px #7A7545;
}

#question {
    width: 500px;
    height: 100px;
    background-color: #767EBD;
    max-width: fit-content;
    margin: 0px auto;
    margin-top: 80px;
    padding:10px;
    position: relative;
    box-shadow: 0px 5px 0px 0px rgb(60, 64, 99);
    cursor: default;
}

#question p {
    margin: 0;
    font-size: 70px;
    line-height: 100px;
    text-align: center;
    display: block;
}

#instruction {
    width: 500px;
    height: 50px;
    color: rgb(255, 255, 255);
    text-align: center;
    line-height: 50px;
    background-color: rgb(70, 75, 117);
    margin: 10px auto;
    box-shadow: 0px 5px 0px 0px rgb(34, 38, 66);
    cursor: default;
}

#choices {
    text-align: center;
    font-size: 30px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.box {
    display: inline-block;
    background-color: white;
    color: rgb(3, 65, 99);
    width: 81px;
    height: 50px;
    margin: 0 25px;
    box-shadow: 0px 3px 0px 0px rgb(3, 65, 99);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s;
    padding-top: 10px;
}

.box:hover {
    background-color: rgb(3, 65, 99);
    color: white;
    box-shadow: 0px 0px 0px 0px white;
    transition: all 0.2s;
}

#startreset {
    text-align: center;
    position: absolute;
    background-color: #B6CCD9;
    left: 40%;
    width: 150px;
    height: 30px;
    color: rgb(51, 51, 51);
    padding-top: 8px;
    box-shadow: 0px 3px 0px 0px rgb(3, 65, 99);
    border-radius: 3px;
    cursor: pointer;
    transition: 0.3s;
}

#startreset:hover {
    background-color: rgb(3, 65, 99);
    color: white;
}

#timeremaining {
    float: right;
    width: 200px;
    height: 30px;
    padding-top: 8px;
    background-color: #f1430e;
    color: rgb(51, 51, 51);
    text-align: center;
    margin: 0 20px;
    box-shadow: 0px 3px 0px 0px rgb(3, 65, 99);
    cursor: default;
    border-radius: 3px;
    display: none;
}

#gameOver {
    z-index: 20;
    width: 100%;
    height: 250px;
    background-color: #7FAEC7;
    position: absolute;
    top: 80px;
    text-align: center;
    display: none;
    cursor: default;
}
#gameOver p {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bolder;
    color: #3d3d3d;
}
@media (max-width: 991px){
    .box{
        margin-right:50px;
        margin-left:50px;
        margin-top:20px;
        color:red;
    }
}