canvas {
  display: block;
}

body {
  background:black;
}

* {
  margin: 0;
  padding: 0;
}

button {
    background-color: white; 
    border: none;
    color: black;
    padding: 10px;
    margin: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

#logo{
  margin: 10px;
}

div#inputOverlay{
  text-align:center; 
  margin:0; 
  padding:10px; 
  width:100%; 
  height:100%; 
  background-color: purple; 
  z-index: 1; 
  position: fixed;
}

textArea{
  width:600px; 
  height:200px; 
  padding:5px; 
  margin:10px;
}

div#loadingBox {
  width: 100%;
  height: 20px;
  position: absolute;
  top: 50%;
  margin-top: -120px;
  text-align: center;
}

div#bgBar {
  position: absolute;
  width: 240px;
  margin-left: -120px;
  left: 50%;
  height: 4px;
  display: block;
  background-color: #948300;
  border-radius: 4px;
}

div#progressBar {
  left: 50%;
  position: absolute;
  margin-left: -120px;
  width: 0px;
  height: 4px;
  background-color: #ffe313;
  border-radius: 4px;
}

div#game {
  margin:auto;
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
}

p#loadingInfo {
  color: #ffe313;
  letter-spacing: 1px;
  position: absolute;
  width: 100%;
  font-family: "Monaco", sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-size: 8px;
  margin-top: 16px;
}