*{
    box-sizing: border-box;
}
body{
    margin: 0;
    max-width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #BE93C5;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #7BC6CC, #BE93C5);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #7BC6CC, #BE93C5); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
h2{
    margin: 5px 20px;
}
ul>li{
    list-style: none;
    margin: 15px 0;   
}
ul>li>label{
    cursor: pointer;
}
.main-container{
    background-color: aliceblue;
    width: 40%;
    border-radius: 10px;
    box-shadow: 0 0  10px rgba(0, 0, 0, 0.2);
}
button{
    margin-top: 20px;
    display: block;
    width: 100%;
    background: #ee9ca7;  /* fallback for old browsers */
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    border-style: none;
    font-size: 1.5rem;
    cursor: pointer ;
}
button:hover{
    background: #e46d7d;
}
.main{
    text-align: center;
    align-items: center;
    justify-content: center;
}
#result{
    display: none;
}
#verdict{
    position: fixed;
    height: 20px;
    width: 20px;
    background-color: bisque;
    top : 95px;
    right : 300px;
    border-radius: 5px;
    text-align: center;
    justify-content: center;
    align-items: center;
}
#replay{
    background-color: burlywood;
    position: fixed;
    display: none;
    width: 100px;
    height: 25px;
    bottom : 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
}
