body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background: white;
    color: black;
    height: 100vh;
    overflow: hidden;
}

.main-content {
    position: relative;
    width: 100vw;
    height: 100vh;
}

h1 {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-size: 1.2em;
    z-index: 50;
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}