/* AutoVibe Initial CSS for project 1743527317712 - Iteration 3 */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #00bcd4; /* Vibrant cyan background, Sonic-like */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

h1 {
    color: #ffc107; /* Yellow, contrasting and energetic, Sonic-like */
    text-shadow: 2px 2px 3px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    font-size: 2.5em;
}

#sonicCanvas {
    display: block;
    margin: 20px auto;
    max-width: 90%; /* More canvas width on larger screens */
    height: auto;
    border: 2px solid #64b5f6; /* Light blue border for canvas */
    background-color: #e0f7fa; /* Very light blue canvas background */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Subtle shadow for depth */
    border-radius: 8px; /* Slightly rounded corners */
}

/* Media query for larger screens */
@media (min-width: 768px) {
    #sonicCanvas {
        max-width: 800px; /* Fixed max width for larger screens */
    }
    h1 {
        font-size: 3em; /* Larger heading on bigger screens */
    }
}

/* Media query for even larger screens (desktops) */
@media (min-width: 1200px) {
    #sonicCanvas {
        max-width: 960px; /* Even wider canvas on desktop */
    }
}