
*{
    margin: 0;
    padding: 0px;
    box-sizing: border-box;
   }
html{
    font-size: 62.5%;
}
.main-div{
    min-height: 100vh;
    width: 100vw;
    display: grid;
    place-items: center;
    background-color: hsl(205,92%,94%);
    
}
.inner-div{
    width:50vw;
    background-color: #fff;
    padding: 1rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 1rem 1rem -0.7rem rgba(0,0,0,0.4);

}
.inner-div li {
   list-style:none;
   font-size:1.5rem;
   margin-top: 1.5rem;
}
.inner-div h2{
    font-size: 2rem;
    font-weight:300;
    margin: 1rem 0 1rem 0;
}
input{
    cursor:pointer;
}
#submit, .btn{
    padding: 1rem 2rem;
    outline:none;
    font-size: 3rem;
    font-weight: bold;
    display: block;
    margin: auto;
    border: none;
    text-transform: uppercase;
    color:#fff;
    background-color: #74b9ff;
    margin-top: 3rem;
    cursor: pointer;
}
#submit:hover{
    background-color: #0984e3;
}
#showScore{
    background-color:#dfe6e9 ;
    margin-top: 3rem;
    padding: 3rem 4rem;
    box-shadow: 0 1rem 1rem -0.7rem rgba(0,0,0,0.4);
}
 #showScore h3{
font-size: 3rem;
text-align: center;
}
#showScore .btn{
    margin-top: 2rem;
    background-color: #55efc4;
    color:#2d3436;

}
#showScore .btn:hover{
    
    background-color: #00b894;
    color:#fff;
    
}

.scoreArea{
    display: none;
}
.allanshint{
    margin-left: 110px;
    
    text-align: center;
}