body{
    margin:0;
    box-sizing: border-box;
    background-color: yellow;
    font-family: cursive;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container{
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 500px;
    height:460px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px black;
    border-radius: 10px;

}
#form{
padding: 20px;
display: flex;
flex-direction: column;



}

#button{
    width: 100%;
    height: 60px;
    margin: 30px 0;
    background-color: green;
    font-size: 25px;
    box-sizing: border-box;
    overflow: hidden;
    border: none;
    border-radius: 7px;
    box-shadow: 0 2px 4px black;
    cursor: pointer;
    color: white;
   
   
}
#input{
    display: block;
    font-size: 25px;
    border: 4px solid green;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    color: green;
    box-sizing: border-box;
    text-align: center !important;
    
}

#input::placeholder {
    vertical-align: middle;
    font-family: sans-serif;
    opacity: .5;
    color: rgb(24, 23, 23);
    font-size: 26px;
    text-align-last: center;
}
h2{
font-size: 30px;
padding-top:70px;
}
.score{
    position: absolute;
    right:20px;
    padding-bottom: 30px;
    color: green;
    font-size: 20px;
}
