body{
    background-image: url(image.jpg);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    background-color: bisque;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
h1{
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
button{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 20%;
    padding: 10px;
    border-radius: 10px;
    background-color: rgb(240, 240, 199);
}
button:hover{
    background-color: aquamarine;
}
.result,.score{
   font-size: larger;
   color:black;
}