/* General styling */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #222;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1000px;
    text-align: center;
}

header {
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #ff69b4;
}

header p {
    font-size: 1.2rem;
    color: #ccc;
}

/* Canvas Styling */
.canvas-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #333;
    border: 2px solid #555;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
}

canvas {
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #000;
}

/* Controls Section */
.controls {
    background-color: #333;
    border: 2px solid #555;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}

.controls h2 {
    color: #ff69b4;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.controls label {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #ccc;
}

input[type='range'] {
    width: 100%;
    appearance: none;
    background: #444;
    border-radius: 5px;
    height: 6px;
    outline: none;
    cursor: pointer;
}

input[type='range']::-webkit-slider-thumb {
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ff69b4;
    border: 2px solid #fff;
    cursor: pointer;
}

input[type='range']::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ff69b4;
    border: 2px solid #fff;
    cursor: pointer;
}

input[type='color'] {
    width: 50px;
    height: 30px;
    border: none;
    margin-top: 10px;
    cursor: pointer;
    background-color: #ff69b4;
    border-radius: 5px;
    outline: none;
}

input[type='color']:hover,
input[type='color']:focus {
    outline: 2px solid #ff69b4;
}

button {
    background-color: #ff69b4;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #ff85b5;
}

footer {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #888;
}

footer p {
    margin: 0;
}