

html,body{
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
    box-sizing: content-box;
}
#game{
    position: absolute;
    width: 400px;
    height: 700px;
    max-width: 95%;
    max-height: 95%;
    top: 50%;
    left:50%;
    transform :translate(-50%,-50%);
    border: 1px solid black;;
    background-color: transparent;
  
 
}

#play{
    position: absolute;
    font-size: 30px;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    padding: 10px;
    border-radius: 16px;
    background: rgb(34, 178, 51);
    color:white;
    
}
#highestScore{
    display: none;
}