body, html {
    padding: 0;
    margin: 0;
    overscroll-behavior: none;
    overflow: hidden;
    background-color: #020202;
    color: white;
    font-family: 'Press Start 2P', cursive;
}

.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    position: relative; /* Ensures .container is positioned for z-index to take effect */
    z-index: 2; /* Higher z-index means this will render above the canvas */
}

.content {
    text-align: left;
    max-width: 900px;
    margin-top: 35px;
    font-size: 14px;
    line-height: 1.6;
}

h1, h2 {
    font-size: 18px;
    margin-bottom: 20px;
}

.highlight {
    color: lime;
}

ul {
    padding: 0;
    list-style-type: none;
}

.indented {
    margin-left: 20px;
    padding-bottom: 10px;
}

li {
    margin-bottom: 15px;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1; /* Lower z-index means it will render behind the text */
}

.fps-counter {
    position: fixed;
    top: 10px;
    left: 10px;
    font-size: 16px;
    color: lime;
    z-index: 3; /* Ensures that FPS counter is above everything else */
}