*
body { 
  color: white; /* To make all text on the page white by default */
  background-color: #2b293d;
  /* flex-direction: column; stack items vertically */
  font-family: 'Montserrat', sans-serif;
  
}

#sliderContainer, 
#sliderContainer2, 
#sliderContainer3 {
    display: flex;
    /* align-items: center; */
    /* gap: 10px; */
    /* margin: 10px auto; */
    /* justify-content: center; */
}

#sliderContainer label,
#sliderContainer2 label,
#sliderContainer3 label {
    /* width: 60px; */
    text-align: right;
}

#sliderContainer span,
#sliderContainer2 span,
#sliderContainer3 span {
    display: inline-block;
    /* width: 40px;     keeps the number box from shifting */
    /* text-align: left; */
}

button{
    background-color: #5c5470;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 14px;
}

button:hover {
    background-color: #7d3b7271;
    transform: scale(1.05);
}