h1 {
    color: #2b2b2b;
    font-size: 2.5rem;
    letter-spacing: 2px; 
}

body {
    background: pink;
}

input, button {
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #333;
    font-size: 1rem;
}

button {
    background-color: #4b8df8;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #346adf;
}

#canvas {
    border: 5px solid black;
    height: 500px;
    width: 900px;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);

}

#container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
    height: 100vh;
    background: linear-gradient(135deg, #c8e7ff, #ffe4ec);
    font-family: 'Poppins', sans-serif;
}

#color {
    width: 40px;
    height: 40px;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 5px;
}

#vol-slider {
    padding: 0;
    box-sizing: border-box;
}