.input1 {
  position: absolute;
  right: 10px;
  height: 30px;
  margin-bottom: 5px;
  border-radius : 8px;
}

.goButton {
  position: absolute;
  background-color: rgb(100, 170, 230);
  width : 100px;
  font-size: medium;
  margin-bottom: 5px;
  border-radius : 8px;
  height: 35px;
  right: -106px;
}

.goButton:hover{
  background-color: lightgreen;
}

.levelComplete {
  opacity: 0.0;
  font-size: xx-large;
  font-style: italic;
  font-weight: bolder;
  position: absolute;
  margin: auto;
  top: -200px;
  left: 0px;
  right: 0px;
  animation-name: somethingFancy;
  animation-duration: 10s;
  animation-iteration-count: 1;
  animation-fill-mode: initial;
}

@keyframes somethingFancy {
  0% {color: red; scale : .01}
  50% {scale : 2; opacity : 1}
  100% {color: rgb(0,0,255); scale : 1}
}

.goButtonEmpty {
  background-color: rgb(100, 170, 230);
  width : 100px;
  font-size: medium;
  margin-bottom: 5px;
  border-radius : 8px;
  height: 35px;
  right: -106px;
  position: absolute;
  animation-name: goButtonEmptyAnimation;
  animation-duration: 0.75s;
}

@keyframes goButtonEmptyAnimation{
  0% {right:-106px}
  20% {right:-101px}
  40% {right:-111px}
  60% {right:-101px}
  80% {right:-111px}
  100% {right:-106px}
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
 
input[type=number] {
    -moz-appearance:textfield;
} 

body{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: large;
  text-align: center;
}

.TopStuff {
  position: relative;
  margin: auto;
  /* margin-bottom: 10px; */
  width : fit-content;
  display: none;
}

.TablePhaseOne {
  /* position: relative; */
  display: none;
  width: 250px;
  /* margin-top: 500px; */
}

.TablePhaseOneHeader {
  /* position: absolute; */
  display: none;
  width: 250px;
  /* margin-top: 500px; */
}

.TablePhaseTwo {
  display: none;
  width: 250px;
}

.Title {
  text-align: center;
  font-weight: bold;
  font-size: larger;
  padding-top: 5px;
  padding-bottom: 10px;
}

.headingRow {
  display: table-row;
  width : 250px;
  font-weight: bold;
  text-align: center;
  background-color: skyblue;
  margin: 0 auto;
}

.containerHeader{
  margin-top: 20px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width : 266.5px;
  /* max-height : 200px;
  overflow : auto; */
  }

.container{
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width : 266.5px;
  max-height : 200px;
  overflow : auto;
  /* display: flex;
  flex-direction: row-reverse; */
}

.container2{
  width : 266.5px;
  max-height: fit-content;
  margin: auto;
  position: relative;
}

.Row {
  display: table-row;
}

.Cell {
  display: table-cell;
  min-width: 120px;
  height: 20px;
  text-align: center;
  border: solid;
  border-width: thin;
  padding-top: 5px;
  padding-bottom: 5px;
}

.BorderlessCell{
  display: table-cell;
  padding-left: 10px;
}

input{
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: large;
  border-style: thin;
  width : 100px;
  border-radius : 8px;
}

.wideButton {
  background-color: lightblue;
  width : 150px;
  font-size: medium;
  margin-top : 20px;
  padding : 5px;
  border-radius : 8px;
}

.wideButton:hover{
  background-color: lightgreen;
}

.wideButtonComplete {
  background-color: palevioletred;
  color: white;
  width: 150px;
  font-size: medium;
  margin-top: 20px;
  padding : 5px;
  border-radius : 8px;
}

.wideButton2 {
  background-color: rgb(100, 170, 230);
  width : 100px;
  font-size: medium;
  margin-top : 20px;
  padding : 5px;
  border-radius : 8px;
}

.wideButton2:hover{
  background-color: lightgreen;
}

.wideButton3 {
  background-color: lightblue;
  width : 150px;
  font-size: medium;
  border-radius : 8px;
  height: 50px;
  vertical-align: middle;
}

.wideButton3:hover{
  background-color: lightgreen;
}

.bottomButtons {
  margin-top: 20px;
}

.rightAns {
  background-color: lightgreen;
  font-weight: bold;

}

.wrongAns {
  background-color: rgb(255, 121, 121);
  color: rgb(112, 110, 110);

}

.guess {
  background-color: white;
}

canvas {
  position: absolute;
  margin-left: -125px;
  z-index: 1;
}

.goodJob {
  font-size: xx-large;
  font-style: italic;
  font-weight: bolder;
  position: absolute;
  margin: auto;
  top: -150px;
  left: 0px;
  right: 0px;
}

.instructions {
  font-size: medium;
  text-align: left;
  padding: 10px;
}

.footer {
  font-size: small;
  padding: 30px 0px 0px 0px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 50px;
  left: 0;
  top: 0;
  overflow: auto;
  width: 100%;
  height: 100%;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 5px 5px 5px 5px;
  border: 2px solid rgb(110, 110, 110);
  width: 300px;
}

.closeModal {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 25px;
  font-weight: bold;
}

.closeModal:hover, .closeModal:focus {
  color: cadetblue;
  font-size: 30px;
  cursor: pointer;
}

.helpText {
  padding: 25px;
  text-align: left;
}

.generatedCode {
  margin-top: 15px;
  font-size: x-large;
  font-weight: 800;
}