html,
body {
  width: 100%;
  height: 100%;
  font-family: Kanit;
  color: white;
  margin: 0;
  font-size: 19px;
}

body {
  display: flex;
  justify-content: center;
  background: #1d1d1d;
  overflow: hidden;
}
.wrapper {
  width: 100%;
  height: calc(100% - 50px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: black;
}

.dial {
  width: clamp(80px, 40vw, 300px);
}
.blue {
  color: #0066cc;
}
.pink {
  color: #ff3399;
}
.box {
  width: 75px;
  height: 75px;
  border-radius: 12px;
  background: #43a047;
  position: absolute;
}
div {
  /* border:1px solid red; */
}
.nav {
  position: fixed;
  height: 50px;
  background: rgba(0, 0, 0, 0.4);
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.sliderGroup {
  width: 240px;

  display: flex;
  align-items: left;
  margin-right: 40px;
  justify-content: start;
}

input {
  width: 100px;
}

@media only screen and (max-width: 1600px) {
  .nav {
    height: 250px;
    flex-direction: column;
    justify-content: space-around;
  }
  .wrapper {
    height: calc(100% - 250px);
  }
}
