body {
    background: #f0f9ff;
    text-align: center;
    font-family: 'Bubblegum Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}

h1 {
    color: #ff6b6b;
    text-shadow: 2px 2px #fff;
}

#doodleCanvas {
    background: white;
    border: 4px dashed #ff6b6b;
    margin: 20px;
    cursor: crosshair;
}

.buttons button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 15px;
    margin: 10px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
}

.buttons button:hover {
    background: #45a049;
    transform: scale(1.1);
}