*{
    background-color: black;
}
#mainbody{
    display: flex;
    justify-content: center;
    margin-top: 24px;
}
#heading{
    display: flex;
    justify-content: space-evenly;
    font-size: 50px;
    text-align: center;
    padding: 24px;
    color: white;
    border: 1px solid white;
}
.bars{
    margin: 0px 2px;
    width: 4px;
    background-color: #00bcd4;
    color: white;
    font-size: 1px;
    text-align: center;
    transition: all .4s ease-in-out;
}
.bars:hover{
    cursor: pointer;
    font-size: 25px;
    padding-top: 7px;
    width: 47px !important;  
    font-weight: bold;
}
#buttons-list{
    display: flex;
    margin-top: 9vh;
    justify-content: center;
    align-items: center;
}
.button{
    margin-left: 24px;
    padding: 10px;
    font-size: 21px;
    background-color: #2a6e76;
    color: white;
    border-radius: 14px;
    border: 2px solid white;
    cursor: pointer;
    transition: all .4s ease-in-out;
}
.button:hover{
    padding: 25px;
    border-radius: 40px;
    background-color: #2e5b60;
}
.link{
    color: white;
    text-decoration: none;
    background-color:#2a6e76;
}
.slidecontainer {
    width: 20%; 
    display: flex;
  }
  #value{ 
    color: white;
    font-size: 21px;
    margin-top: 0px;
    margin-left: 12px;
     width: 48%;
  }
  
  .slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%; 
    height: 14px; 
    background: #d3d3d3; 
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s; 
    transition: opacity .2s;
  }
  

  .slider:hover {
    opacity: 1; 
  }
  
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none; 
    appearance: none;
    width: 25px; 
    height: 25px; 
    background: #04AA6D; 
    cursor: pointer; 
  }
  
  .slider::-moz-range-thumb {
    width: 25px; 
    height: 25px; 
    background: #04AA6D;
    cursor: pointer; 
  }