body{
    margin : 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color : #070505c9;
    color: white;
    text-align: center;
}
h1 {
    margin-top: 30px;
}
.score {
    display:flex;
    justify-content: center;
    gap: 100px;
    margin-top: 40px;
}
.score div {
    background-color: #222;
    padding : 20px 50px;
    border-radius : 15px;
    box-shadow : 0 0 15px rgba(255,255,255,0.15);
}
.score p{
    font-size : 40px;
    margin : 10px;

}
#result {
    margin-top: 40px;
    font-size: 30px;

}

.buttons {
    display:flex;
    justify-content : center;
    gap : 20px;
    margin-top: 30px;

}
.buttons button{
    padding: 20px 35px;
    font-size: 20px;
    border: none;
    border-radius: 12px;
    cursor : pointer;
    background: white;
    color: black;
    transition: 0.2 s;
}
.buttons button:hover {
    transform: translateY(-5px);
    box-shadow : 0 8px 20px rgba(255, 255, 255, 0.25);
}
#choices {
    margin-top: 30px;
    font-size: 18px;

}
body > button {
    margin-top: 20px;
    padding: 12px 25px;
    border : none;
    border-radius : 8px;
    cursor: pointer;
    font-size: 16px;

}