* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  outline: none;
}

html,
body {
  height: 100vh;
  display: grid;
  place-items: center;
  background: #52a7e0;
}

.box {
  background: white;
  padding: 20px 20px 20px 30px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.box .slider {
  height: 40px;
  width: 300px;
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.box .slider input {
  height: 10px;
  width: 100%;
  /* appearance: none; */
  outline: none;
  background: #f2f2f2;
  border-radius: 25px;
  box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.2);
}

.box .value {
  font-size: 30px;
  font-weight: 600;
  font-family: sans-serif;
  color: #3498bd;
  width: 55px;
  text-align: center;
}
