* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 20px;
    font-family: "Segoe UI", sans-serif;
    background: #fde4ec;
    color: #444;
}

h1 {
    text-align: center;
    color: #d81b60;
    margin-bottom: 30px;
}

.section {
    max-width: 1100px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(216, 27, 96, 0.15);
}

input, button, textarea {
    font-size: 16px;
    padding: 10px;
    margin: 5px 0;
    border-radius: 8px;
    border: 1px solid #e0a1b8;
}

button {
    background: #f48fb1;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #ec6f9f;
}

textarea {
    width: 100%;
    height: 260px;
    resize: vertical;
}

canvas {
    width: 100% !important;
    height: auto !important;
}