#temperatureslider .rs-handle {
    background-color: #f3f3f3;
    box-shadow: 0px 0px 4px 0px #000;
  }

  #temperatureslider .rs-tooltip-text {
    font-size: 75px;
    font-weight: bold;
  }

.row {
      display: flex;
      justify-content: space-between;
      max-width: 550px;
      text-align: center;
  }

.warming-text {
  animation: warmglow 1s ease-in-out infinite alternate;
}

@keyframes warmglow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
}

#optionsSection {
  width: 600px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

#main {
  margin: auto;
  width: 650px;
  text-align: center;
}

button {
  background-color: #a6d2f0; /* Green */
  border: none;
  color: rgb(29, 29, 32);
  padding: 5px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}