*{
    margin: 0;
    padding: 0;
    text-align: center;
}

nav{
    background-color:#081829 ;
    height:8vh ;
    color: white;
    text-align: center;
    line-height: 4rem;
}



.choices{
    display: flex;
    justify-content: center;
    gap:5rem ;
    margin-top: 5rem;
}
.choice{
    height: 165px;
    width:165px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
img{
    height: 150px;
    width:150px;
    object-fit: cover;         /*------- new -------*/
    border-radius: 50%;
}
.choice:hover{
    background-color: #081829;
    cursor:pointer;
}
.score-board{
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
}
.score{
    font-size: 2em;
}
.center{
    text-align: center;
    font-size: 4rem;
}

.result-ans{
    margin-top: 5rem;
}
#result{
    background-color:#081829;
    color: aliceblue;
    font-size: 2rem;
    padding: 1rem;
    display: inline;
    border-radius: 1rem;
}