html, body {
    max-width: 100%;
    overflow-x: hidden;
    background-color: #f8f8f8 !important ;
}

nav{
    background-color: #17109e;
    box-shadow: rgba(57, 63, 72, 0.3) 0px 3px 5px 0px
}

h3{
    color: #0c76eb;
}

footer{
    background-color: #a0a0a0    ;
}


  .range-slider {
    flex: 1;
  }

  .sliderticks {
    display: flex;
    justify-content: space-between;
    padding: 4px 10px;
  }
  
  .sliderticks span {
    display: flex;
    justify-content: center;
    width: 0px;
    height: 10px;
    background: #d3d3d3;
    line-height: 40px;
    font-size: x-small;
  }

  input[type="range"] {

    -webkit-appearance: none;
    appearance: none; 
    width: 100%;
    cursor: pointer;
    outline: none;
    border-radius: 15px;
    height: 6px;
    background: #ccc;
  }


  input[type="range"]::-webkit-slider-thumb {

    -webkit-appearance: none;
    appearance: none; 

    height: 20px;
    width: 20px;
    background-color: #17109e
    ;
    border-radius: 50%;
    border: none;

    transition: .2s ease-in-out;
  }
  
  /* Thumb: Firefox */
  input[type="range"]::-moz-range-thumb {
    height: 20px;
    width: 20px;
    background-color: #17109e;
    border-radius: 50%;
    border: none;

    transition: .2s ease-in-out;
  }
  

  input[type="range"]::-webkit-slider-thumb:hover {
    box-shadow: 0 0 0 10px rgba(234, 139, 85, .2)
  }
  input[type="range"]:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 13px rgba(234, 139, 85, .6)
  }
  input[type="range"]:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 13px rgba(234, 139, 85, .4)
  }
  

  input[type="range"]::-moz-range-thumb:hover {
    box-shadow: 0 0 0 10px rgba(234, 139, 85, .2)
  }
  input[type="range"]:active::-moz-range-thumb {
    box-shadow: 0 0 0 13px rgba(234, 139, 85, .6)
  }
  input[type="range"]:focus::-moz-range-thumb {
    box-shadow: 0 0 0 13px rgba(234, 139, 85, .4)    
  }
  

  
  body {
    font-family: system-ui;
  }
  
  .range {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    height: 8rem;
    width: 80%;
    background: #fff;
    padding: 0px 10px;
  }
  
  .value {
    font-size: 26px;    
    width: 50px;
    text-align: center;
  }

  