*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: purple;

}

.theTimer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 145px;
    height: 45px;
    background: white;
    padding: 0 8px;
}

.instruction.activeInfo{
    z-index: 5;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.start{
    position: absolute;
    top: 45%;
    left: 45%;
}

.start button{
    font-size: 36px;
    font-weight: 800;
    color: rgb(255, 114, 161);
    padding: 10px 10px;
    outline: 1rem;
    border: 1px;
    border-radius: 40px;
}

.start button:hover{
    color: white;
    background: rgb(255, 114, 161);
    cursor: pointer;
}

.instruction{
    position: absolute;
    top: 30%;
    left: 28%;
    width: 500px;
    background-color: aliceblue;
    padding: 20px 20px;
    opacity: 0;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(.5);
}

.instructionTitle{
    padding: 0% 30%;
    display: flex;
    align-items: center; 
    font-size: 28px;
}

.Quiz{
    font-size: 18px;
}

.Quiz span{
    color: rgb(255, 114, 161);
    font-weight: 800;
    
}

.buttons{
    padding: 0% 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.buttons button{
    margin: 0 10px;
    height: 30px;
    width: 200px;
}

.MainBox.activeMainBox{
    z-index: 5;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.MainBox {
    position: absolute;
    top: 30%;
    left: 28%;
    width: 500px;
    background-color: aliceblue;
    padding: 20px 20px;
    opacity: 0;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(.5);
}

.timer {
    display: flex;
    align-items: flex-end;
    width: 125px;
    justify-content: space-between;
}

.MainBox section{
    padding: 25px 30px 20px 30px;
}

.questions{
    font-size: 20px;
    font-weight: 600;
}

.choices{
    padding: 20px 0;
    display: block;
}

.ABCD{
    background: rgb(255, 114, 161);
    border: 1px solid purple;
    border-radius: 8px;
    padding: 6px 20px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.ABCD:hover{
    color: blueviolet;
    background: rgb(255, 146, 182);;
}

.MainBox footer{
    height: 30px;
    width: 20px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Score{
    opacity: 0;
    position: absolute;
    top: 30%;
    left: 28%;
    width: 500px;
    background-color: aliceblue;
    padding: 20px 20px;
    font-size: 24px;
    font-weight: 800;
    color: rgb(99, 194, 3);
}