body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h1 {
    font-family: 'Georgia', serif;
    font-size: 2.5em;
    color: #446699;
    margin-top: 20px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.parent-container {
    display: flex;
    justify-content: space-between;

}

.canvas-container, .sticker-container {
    height: 70vh;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 10px;
    box-sizing: border-box;
}

.canvas-container {
    flex-basis: 70%;
}

.sticker-container {
    flex-basis: 30%;
}

#stickerContainer {
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 100"><text x="50%" y="50%" font-family="Arial, sans-serif" font-size="24" text-anchor="middle" dominant-baseline="central" fill="%23000000" opacity="0.1">Stickerbook</text></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

#imageContainer {
    width: 80%;
    height: 100%;
}

#downloadBtn {
    display: block;
    margin: 20px auto;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.button:hover {
    background-color: #0056b3;
}

.button:active {
    background-color: #003d80;
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}
