* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: rgba(247, 224, 104, 1);
  color: rgba(255, 255, 255, 0.9);
}

.slider-container {
  text-align: center;
  padding: 20px;
  background-color: rgba(55, 58, 60, 0.9);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  width: 500px;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

p {
  font-size: 18px;
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.label {
  font-size: 16px;
  font-weight: 300;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 24px;
  background: linear-gradient(
    to right,
    rgba(255, 95, 87, 1),
    rgba(255, 204, 0, 1),
    rgba(247, 224, 104, 1),
    rgba(152, 251, 152, 1),
    rgba(30, 144, 255, 1)
  );
  border-radius: 12px;
  margin: 0 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider::-moz-range-thumb {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

footer {
  position: absolute;
  bottom: 20px;
  text-align: center;
}

footer p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: rgba(152, 251, 152, 1);
}
