html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    cursor: none;
    overflow: hidden;
}

canvas {
display: block;
width: 100%;
height: 100%
}

/* This is for the text overlay in the webpage */
.overlay-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color:antiquewhite;
    font-size: 36px;
    font-family: cursive;
    text-align: center;
    z-index: 10;
}