html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #121212;
}

body {
    position: fixed;
    width: 100%;
    height: 100%;
}

#root {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

canvas {
    width: 100vw !important;
    height: 100vh !important;
}

#splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #121212;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: system-ui, sans-serif;
}

#splash img {
    width: 200px;
    height: 200px;
}