@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
body {
  display:flex; 
  flex-direction:column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #faf9f9;
}
div {
  padding: 20px;
  
}
#price {
  position: relative;
  display: block;
  font-size: 6em;
  color: #999;
  font-weight: 400;
}
#income {
  position: relative;
  display: block;
  font-size: 6em;
  color: #999;
  font-weight: 400;
}
#subscribers {
  position: relative;
  display: block;
  font-size: 6em;
  color: #999;
  font-weight: 400;
}
.range {
  width: 400px;
  height: 15px;
  -webkit-appearance: none;
  background: #dde3f7;
  outline: none;
  border-radius: 15px;
  overflow: hidden;
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #7289DA;
  cursor: pointer;
  border: 4px solid #dde3f7;
  box-shadow: -407px 0 0 400px #7289DA;
}
