body {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  font-family: Arial, Helvetica, sans-serif;
}
.container {
  width: 60%;
  transform: translate(-20px, -50px);
}
p {
  text-align: center;
  margin-bottom: 100px;
  font-size: 2rem;
}
#playground {
  border: solid 1px black;
  height: 200px;
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  position: relative;
}
#output {
  height: 75px;
  width: 100%;
  background: #f1f1f1;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  text-align: center;
  outline: none;
  margin-top: 100px;
}
button {
  left: 0px;
  z-index: 5400;
  margin-top: 100px;
}
input {
  width: 50px;
  margin-left: 20px;
}
.playground-form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-around;
  height: 200px;
}
.content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.output-section {
  width: 100%;
  display: flex;
  height: 75px;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.output-section button {
  height: 75px;
}
#reset {
  margin-top: 0;
}
#slider-range-right,
#slider-range-left {
  height: 200px;
  position: absolute;
}

#slider-range-right {
  right: -50px;
}
#slider-range-left {
  left: -50px;
}

#slider-range-top,
#slider-range-bottom {
  width: 400px;
  position: absolute;
}

#slider-range-top {
  top: -50px;
}
#slider-range-bottom {
  bottom: -50px;
}
