svg {
    width: 400px;
    height: 400px;
    margin-bottom: 20px;
}
button, input {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
}
#blobButton {
    background-color: #FF0066;
    color: rgb(194, 232, 250);
    border: none;
    cursor: pointer;
    border-radius: 10px;
}
#blobButton:hover {
    background-color: #ff3399;
}

.sliderPart {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 10px;
}

label {
    font-size: 25px;
    color: rgb(194, 232, 250);
    margin: auto;
}

.slider {
    -webkit-appearance: none;
    width: 80%;
    height: 10px;
    background: #ff0000;
    outline: none;
    opacity: 0.7;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    border-radius: 10px;
    margin: auto;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #3300cc;
    cursor: pointer;
    border-radius: 50%; /* Perfectly circular thumb */
}
/*to see the main and control points*/
/*.control-point {*/
/*    fill: blue;*/
/*}*/
/*.main-point {*/
/*    fill: red;*/
/*}*/
