* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #5F37b5;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#slimeCanvas {
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
} 