body {
    margin: 0;
    overflow: hidden; /* Hide scrollbars for the canvas */
    font-family: sans-serif;
    color: white;
    text-align: center;
}

#p5-canvas-container {
    position: fixed; /* Position the canvas to fill the entire viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place the canvas behind the content */
}

canvas {
    display: block; /* Remove any default spacing below the canvas */
}

.content {
    position: relative;
    z-index: 1; /* Place content on top of the canvas */
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
    border-radius: 10px;
    margin: 10vh auto;
    max-width: 800px;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    line-height: 1.5;
}
