body {
	background-color: white #263238;
}

.box {
	width: 50px;
  height: 50px;
  background-color: black;
	float: left;
  font-size: 30px;
  margin: 5px;
  display: inline-block;
  text-align: center;
  color: white;
  font-family: sans-serif;
  text-align: center;
	vertical-align: middle;
	line-height: 50px;
}

#boxContainer {
  width: 500px;
  margin: auto;
  display: flex;
  justify-content: center;
}

#container {
	width: 250px;
  padding-top: 1%;
  margin: auto;
  text-align: center;
}

h1, h2 {
	font-family: sans-serif;
  color: #141414;
}

h1 {
  text-align: center;
}

#binaryInput {
	border-radius: 25px;
  padding: 10px 50px;
  border: solid 3px gray;
}

#rangeInput {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 5px;  
  background: gray;
}

#rangeInput::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%; 
  background: #3dd9cc;
  cursor: pointer;
}

#switchDisplay {
	text-align: center;
	font-family: sans-serif;
  font-size: 35px;
  
}

#submit {
	width: 170px;
  height: 50px;
  background-color: #3dd9cc;
  border-radius: 13px;
  margin: 10px;
  color: white;
  font-size: 25px;
}

form {
 text-align: center;
}