*{
    margin: 0;
    padding: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
body{
    background-color: rgb(15, 15, 95);
}
.container{
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 400px;
    width: 400px;
    border: 0;
    border-radius: 10px;
    outline: 0;    
}
.content{
    margin-left: 15px;
    margin-right: 15px;
}
.container h3{
    color: rgb(15, 15, 95);
    font-weight: bolder;
    font-size: 25px;
    padding-top: 20px;
    padding-bottom: 10px;
    margin-left: 10px;
}
.content .question{
    color: rgb(15, 15, 95);
    font-weight: bolder;
    font-size: large;
    
}
.container hr{
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

option{
    border: 1px solid black;
    margin-top: 15px ;
    cursor: pointer;
    padding: 5px;
    font-weight: 500;
    font-size: small;
    transition: all 1ms;
    
}
option:hover{
    color: white;
    background: #efefef;
}
.content input{
    height: 40px;
    width: 70px;
    font-weight: 500;
    font-size: small;
    background: rgb(15, 15, 95);
    color: #fff;
    border-radius: 10px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 60%);
}
.question{
    display: none;   
}
.question.active {
    display: inline;
}
#score{
    display: none;
}
.score .scoreNo{
    color: rgb(15, 15, 95);
    font-weight: bolder;
    font-size: large;
    margin-left: 10px;
}
.score input{
    height: 40px;
    width: 100px;
    font-weight: 500;
    font-size: small;
    background: rgb(15, 15, 95);
    color: #fff;
    border-radius: 10px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 60%);
}