* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-width: 850px;  /* Slightly larger than canvas container to ensure proper scrolling */
    min-height: 850px; /* Slightly larger than canvas container to ensure proper scrolling */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #080808;
    position: relative;
    overflow: auto; /* Enable scrolling when needed */
    padding: 20px; /* Add some padding around the canvas */
}

#artContainer {
    position: relative; /* Changed from fixed to relative */
    width: 800px;
    height: 800px;
}

canvas {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    background: #080808;
}

