@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap');

body {
    font-family: 'Caveat', cursive;
    background: linear-gradient(135deg, #e9d5ff 0%, #fae8ff 100%);
    min-height: 100vh
}

canvas {
    background: #fff;
    border: 8px solid #a855f7;
    box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.2);
    cursor: crosshair
}

/* High-quality claymation background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('clay_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
}