

html, body {
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    scroll-behavior: smooth; /* Optional: Smooth scrolling */
}

#canvas1{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width:600px;
    height:400px;
    border:2px solid black;
}
#playAgainBtn{

    position: absolute;
    top:55%;
    left:50%;
    transform: translate(-50%,-50%);
    width:200px;
    height:50px;
     padding:10px;
    background-color: rgb(224, 6, 6);
    color:white;
    font-size: 20px;
    font-weight: bold;
    display:none;

}