body{
    background: #333446;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.quizzBox{
    background-color: #B8CFCE;
    width: 600px;
    border-radius: 5px;
}
.QuizzHead{
    padding: 4rem;
}
h2{
    padding: 1rem;
    text-align: center;
    margin: 0;
}
ul{
    list-style-type: none;
    padding: 0;
}
ul li{
    font-size: 1.2rem;
    margin: 1rem;
}
ul li label{
    cursor: pointer;
}
button{
    background: red;
    color: aliceblue;
    border: none;
    display: block;
    width: 100%;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 1.1rem;
    border-radius: 5px;
}
button:hover{
    background-color: green;
    color: black;
}