/* CSS */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#loading {
    font-family: "Courier New", monospace;
    margin: 30px;
}

#fakescroll {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#scrolldown {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.3);
    padding: 3px 6px;
    font-family: "Courier New", Arial, sans-serif;
    color: #fff;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
    font-size: 1rem;
}
