.correct{
    background-color: rgb(52, 176, 52);
}
.incorrect{
    background-color: rgb(157, 53, 53);
}

#answer-buttons .btn{
    background-color: #fff;
    width: 100%;
    height:auto;
    display: flex;
    justify-content: start;
    cursor: pointer;
    margin-top: 2%;
    margin-right: 0px;
    padding: 2px 8px;
    border: 1px solid lightgray;
    transition: all 0.3s;
}
#result{
    text-align: center;
    font-size: 35px;
    font-weight: 600;
    
}
#wining{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#win{
    width: 500px;
    height: 500px;
    border-radius: 50%;
}
#answer-buttons .btn:hover{
    background-color: rgb(7, 7, 7);
    color: #fff;
    transition: 0.7s;
}