.Sorting_algorithm{
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin: 20px 100px;
}

.SortingCanvas{
    margin-bottom: 10px;
}

.button-padding{
    padding: 20px 100px;
    text-align: center;
}

.about-button {
    background-color: transparent;
    color: rgb(234, 228, 228);
    border: 1px solid grey;
    border-radius: 20px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;

    margin-bottom: 10px;

    
}

.about-button:hover {
    background-color: lightgrey;
    color: #333333;
}


@media (max-width: 1200px){

    .Sorting_algorithm{
        font-size: 18px;
        margin: 20px 80px;
    }

    .SortingCanvas{
        width: 100%;
        height: 100%;
    }
  
}

@media (max-width: 760px){
    
        .SortingCanvas{
            width: 100%;
            height: 100%;
        }
        .button-padding{
            padding: 20px 50px;
           
        }
}



.test-button {
    background-color: transparent;
    color: rgb(234, 228, 228);
    border: 1px solid grey;
    border-radius: 20px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;

    margin-bottom: 8px;
}

.test-button:hover {
    background-color: lightgrey;
    color: #333333;
}


.range-label {
    display: flex;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

.range-label label {
    margin-right: 10px;
    font-size: 16px;
    color: #aaa5a5;
    margin-top: 5px;
    margin-bottom: 5px;
}

.range-label input[type="range"] {
    -webkit-appearance: none;
    width: 500px;
    height: 8px;
    background: #ddd;
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s;
    margin-top: 5px;
    margin-bottom: 5px;
}

.range-label input[type="range"]:hover {
    opacity: 1;
}

.range-label input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #aaa5a5;
    cursor: pointer;
    border-radius: 50%;
    margin-top: 5px;
    margin-bottom: 5px;
}

.range-label input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;

    margin-top: 5px;
    margin-bottom: 5px;
}
