p{
    position: absolute;
    top: 120px;  /* Moves it down from the top to the "top middle" area */
    left: 30px; /* Aligned 30px from the left */
    z-index: 10; /* Ensures it stays above the canvas */
}

#canvas1 {
    position: absolute;
    background: skyblue;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

