html {
	background-color: rgb(20,100,0);
}

body {
	width: 100%;
	height:100%;
}

#h1Container {
	position: absolute;
	color: yellow;
	width:800px;
	font-size:30px;
	text-align:center;
	left: -webkit-calc(50% - 400px);
    left:    -moz-calc(50% - 400px);
    left:         calc(50% - 400px);
    top: -webkit-calc(50% - 500px);
    top:    -moz-calc(50% - 500px);
    top:         calc(50% - 500px);
}

#left {
	position:absolute;
	left: -webkit-calc(50% - 400px);
    left:    -moz-calc(50% - 400px);
    left:         calc(50% - 400px);
    top: -webkit-calc(50% - 125px);
    top:    -moz-calc(50% - 125px);
    top:         calc(50% - 125px);
   	color:white;
}

#right {
	position:absolute;
	left: -webkit-calc(50% + 200px);
    left:    -moz-calc(50% + 200px);
    left:         calc(50% + 200px);
    top: -webkit-calc(50% - 125px);
    top:    -moz-calc(50% - 125px);
    top:         calc(50% - 125px);
   	color:white;
}

#bigger {
	position:absolute;
	left: -webkit-calc(50% - 250px);
    left:    -moz-calc(50% - 250px);
    left:         calc(50% - 250px);
    top: -webkit-calc(50% - 350px);
    top:    -moz-calc(50% - 350px);
    top:         calc(50% - 350px);
  	z-index: 9;
  	border: black solid medium;
  	border-radius: 50px;
  	padding: 25px;
}


#smaller {
	position:absolute;
    left: -webkit-calc(50% + 100px);
    left:    -moz-calc(50% + 100px);
    left:         calc(50% + 100px);
    top: -webkit-calc(50% - 350px);
    top:    -moz-calc(50% - 350px);
    top:         calc(50% - 350px);
  	z-index: 9;
  	border: black solid medium;
  	border-radius: 50px;
  	padding: 25px;
}

#equal {
	position:absolute;
    left: -webkit-calc(50% - 75px);
    left:    -moz-calc(50% - 75px);
    left:         calc(50% - 75px);
    top: -webkit-calc(50% - 350px);
    top:    -moz-calc(50% - 350px);
    top:         calc(50% - 350px);
  	z-index: 9;
  	border: black solid medium;
  	border-radius: 50px;
  	padding: 25px;
}

#signDiv {
	position:absolute;
	width:200px;
	height:200px;
    left: -webkit-calc(50% - 125px);
    left:    -moz-calc(50% - 125px);
    left:         calc(50% - 125px);
    top: -webkit-calc(50% - 150px);
    top:    -moz-calc(50% - 150px);
    top:         calc(50% - 150px);
    border: thin yellow dashed;
    padding: 25px;
}

#controlButton {
	position:relative;
    width: 100%;
	background-color: white;
	border: none;
	color: black;
	padding: 16px 48px;
	text-decoration: none;
	margin: 4px 2px;
	font-size: 50px;
	cursor: pointer;
	border-radius:50px;
}

#controlButton:disabled {
	opacity: 0.2;
	position:relative;
    width: 100%;
	background-color: white;
	border: none;
	color: black;
	padding: 16px 48px;
	text-decoration: none;
	margin: 4px 2px;
	font-size: 50px;
	border-radius:50px;
}

#inputButtonDiv {
	position:absolute;
	width: 400px;
	text-align:center;
    left: -webkit-calc(50% - 200px);
    left:    -moz-calc(50% - 200px);
    left:         calc(50% - 200px);
    top: -webkit-calc(50% + 220px);
    top:    -moz-calc(50% + 220px);
    top:         calc(50% + 220px);
}

#respTrue {
	position:absolute;
	width: 600px;
	font-size: 70px;
	text-align:center;
	background-color: green;
	left: -webkit-calc(50% - 300px);
    left:    -moz-calc(50% - 300px);
    left:         calc(50% - 300px);
    top: -webkit-calc(50% + 120px);
    top:    -moz-calc(50% + 120px);
    top:         calc(50% + 120px);
}

#respFalse {
	position:absolute;
	width: 600px;
	font-size: 70px;
	text-align:center;
	background-color: red;
	left: -webkit-calc(50% - 300px);
    left:    -moz-calc(50% - 300px);
    left:         calc(50% - 300px);
    top: -webkit-calc(50% + 120px);
    top:    -moz-calc(50% + 120px);
    top:         calc(50% + 120px);
}







#resetButton {
	position:relative;
    width: 100%;
	background-color: white;
	border: none;
	color: black;
	padding: 16px 48px;
	text-decoration: none;
	margin: 4px 2px;
	font-size: 40px;
	cursor: pointer;
	border-radius:50px;
}

#resetButtonDiv {
	position:absolute;
	width: 300px;
	text-align:center;
    left: -webkit-calc(50% - 150px);
    left:    -moz-calc(50% - 150px);
    left:         calc(50% - 150px);
    top: -webkit-calc(50% + 320px);
    top:    -moz-calc(50% + 320px);
    top:         calc(50% + 320px);
}