.Test{
    justify-content: center;
    background-color: #fff;
    width: 90%;
    max-width: 600px;
    margin: 100px auto 0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 150px;
    height: 400px;
}
.Test h1{
    text-align: center;
    font-size: 30px;
    color: #8968CD;
    border-bottom: 1px solid black ;
    font-weight: 600;
    padding-bottom: 30px;
    text-shadow: 0 0 2px #8968CD;
}
.quiz h2{
    font-size: 18px ;
    font-weight: 500;
    margin-top: 10px;
}
.btn{
    background: #fff;
    color: #8968CD;
    font-weight: 500;
    width: 100%;
    border: 1 px solid #cea2fd;
    padding: 10px;
    margin: 10px 0;
    text-align: left;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.5s;
}
.btn:hover:not([disabled]){
    background: #cea2fd;
    color: #fff;
}
.btn:disabled{
    cursor: no-drop;
}
#next-btn{
    background: #8968CD;
    color: #fff;
    font-weight: 500;
    width: 150px;
    border: 0;
    padding: 10px;
    margin: 20px auto 0;
    border-radius: 4px;
    cursor: pointer;
    display: none;
}
.correct{
    background: greenyellow;
}
.incorrect{
    background: red;
}