html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  font-family: Inter,Avenir,Helvetica,Arial,sans-serif;
}

body {
  background-color: #fff;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #1b252b;
  background-image: url(./bg.png);
  background-position: 50% 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: #fff;
}

#lottie {
  position: relative;
  display: flex;
  padding: 50px;
  box-sizing: border-box;
}

#lottie svg {
  width: 200px;
  height: 200px;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

input[type="number"] {
  outline: none;
  height: auto;
  max-width: 100px;
  margin-bottom: 0;
  border: 0px solid #000;
  border-radius: 5px;
  background-color: #ffffff26;
  display: block;
  width: 100%;
  padding: 8px 12px;
  font-size: 18px;
  color: #3c304b;
  vertical-align: middle;
  background-color: #fff;
  font-weight: 600;
}

button {
  background-color: #ffffff26;
  color: #fff;
  border-radius: 5px;
  transition: border-color .2s ease,color .2s ease,box-shadow .25s ease,background-color .2s ease;
  line-height: 1.5;
  text-align: center;
  padding: 4px 12px;
  font-size: 18px;
  border: 0;
  cursor: pointer;
  font-weight: 500;
}

button:hover, button:focus {
  background-color: #fff3;
  box-shadow: 0 7px 20px -10px #0003;
}

input[type="range"] {
  -webkit-appearance: none;
  margin-right: 15px;
  width: 200px;
  height: 7px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  background-size: 70% 100%;
  background-repeat: no-repeat;
}

input[type="range"]:focus {
  outline: none;
}

/* Input Thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: white;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background .3s ease-in-out;
}

input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: white;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background .3s ease-in-out;
}

input[type="range"]::-ms-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: rgb(255 255 255 / 80%);
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background .3s ease-in-out;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: white;
}

input[type="range"]::-moz-range-thumb:hover {
  background: white;
}

input[type="range"]::-ms-thumb:hover {
  background: white;
}

/* Input Track */
input[type=range]::-webkit-slider-runnable-track  {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

input[type=range]::-moz-range-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

input[type="range"]::-ms-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

.upload {
  background-color: #ffffff26;
  color: #fff;
  border-radius: 5px;
  transition: border-color .2s ease,color .2s ease,box-shadow .25s ease,background-color .2s ease;
  line-height: 1.5;
  text-align: center;
  padding: 4px 12px;
  font-size: 18px;
  border: 0;
  cursor: pointer;
  font-weight: 500;
}

.upload:hover, .upload:focus {
  background-color: #fff3;
  box-shadow: 0 7px 20px -10px #0003;
}