body {
    font-family: "Comic Sans MS", "Segoe UI", sans-serif;
    background-image: url('https://file.garden/ZlwiKgzAvyz0wLRz/bg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
    color: #4b2e4a;
    text-align: center;
    margin: 0;
    padding: 20px;
}

h1 {
    font-size: 2.5rem;
    color: #ff66a3;
    text-shadow: 2px 2px #ffd6e7;
    margin-bottom: 10px;
}

canvas {
    border: 3px dashed #ff99cc;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 12px rgba(255, 153, 204, 0.4);
    cursor: crosshair;
}

.stroke-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    margin: 5px;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}
.stroke-color:hover {
    transform: scale(1.2);
}

button {
    background: #ffb3d9;
    border: none;
    border-radius: 12px;
    padding: 8px 16px;
    margin: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 3px #cc6699;
    transition: transform 0.1s;
}
button:active {
    transform: translateY(2px);
    box-shadow: 0 1px #cc6699;
}

input[type=color], input[type=range] {
    margin: 10px;
    cursor: pointer;
}

#gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.image-container {
    border: 2px solid #ffb3d9;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(255, 153, 204, 0.3);
}
.image-container img {
    border-radius: 8px;
}
.image-container p {
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
}


.apple-container {
  background-image: url('https://file.garden/ZlwiKgzAvyz0wLRz/EPAL');
  padding: 57px;
background-size: fit;
background-repeat: no-repeat;
 background-position: center;
}