body {
    overflow-y:auto;
    overflow-x:hidden;
    font-family: 'Arial', sans-serif;
}

#background-canvas {
    z-index: 0;
    top: 0;
    left: 0;
    width: 500%;
    height: 500%;
    position:absolute;
    object-fit: cover;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

#content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    pointer-events: none;
}

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

#content p {
    font-size: 1.5em;
    opacity: 0.9;
}