main {
  display: flex;
  flex-direction: column;
  height: 100vh;
}
body {
    overflow: hidden;
}
.stageContainer {
  background-color: rgb(124, 124, 124);
  flex: 1;
}

#Controls {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-left: 10rem;
  margin-right: 10rem;
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
  text-align: center;
  font-size: 2rem;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
/* differentiating the button by making it green compared to black and white color palette.
This is to users know that it is an interactable button*/
#CircleButton {
  width: 9rem;
  height: 3rem;
  background-color: green;
}
