body {
    font-family: Verdana, Arial, sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    background-color: white;
}
div {
    color: white;
}
/*Track Styles *****/
/* Chrome, Safari, Opera, and Edge Chromium *****/
input[type="range"]::-webkit-slider-runnable-track {
    background: #FFFFFF40;
    height: 12px;
  }
  /*Firefox ********/
  input[type="range"]::-moz-range-track {
    background: #053a5f;
    height: 12px;
  }
/*Thumb Styles *****/
/*Chrome, Safari, Opera, and Edge Chromium *****/
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    margin-top: -3px; /* Centers thumb on the track */
    background-color: #3f97de;
    height: 16px;
    width: 6px;    
 }
 /* Focus Styles *****/
/* Removes default focus */
input[type="range"]:focus {
    outline: none;
  }
/***** Chrome, Safari, Opera, and Edge Chromium *****/
input[type="range"]:focus::-webkit-slider-thumb {
    border: 1px solid #606060;
    outline: 3px solid #808080;
    outline-offset: 0.125rem;
}
  
/******** Firefox ********/
input[type="range"]:focus::-moz-range-thumb {
    border: 1px solid #606060;
    outline: 3px solid #606060;
       
}
/* *--------                 BUTTONS             ----------------*/
.min-button {
    font-size: 16px;
    width: 60px;
    height: 32px;
    border: none;
    font-weight: bold;
    color: white;
 }
.min-button:hover {
   font-size: 20px;
}
.min-button:active {
      transform: translateY(4px);
 }
 .impact-button {
    background-color: #00529c;
    border-radius: 12px;
    color: white;
    font-size: 20px;
    width: 200px;
    height: 50px;
    border-style: solid;
    border-width: 1px;
    border-color: #6781ba;
    font-weight: bold;
 }
.impact-button:hover {
    background-color: #6781ba;
}
.impact-button:active {
      transform: translateY(4px);
 }
 .raised-button {
    background-color: transparent;
    border-radius: 12px;
    color: white;
    font-size: 20px;
    width: 200px;
    height: 50px;
    border-style: none;
    border-width: 1px;
    font-weight: bold;
    border-color: #00408c;
 }
.raised-button:hover {
    box-shadow: 5px 4px 8px #00408c;
    transform: translateY(-2px);
    border-style: solid;
}
.raised-button:active {
      transform: translateY(4px);
 }

 /* *--------                 BUTTONS             ----------------*/
