html, body {
  position: fixed;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: transparent;
}
.btn-primary{
    position: absolute;
    left: 50%;
    top:  50%;
    width: 20vh;
    height: 5vh;
    font-size: 2vh;
    align-self: center;
    transform: translate(-50%, -50%);
    z-index: 100;
    display: none;
  }
#fps{
    position: absolute;
    background-color: black;
    border: 2px solid red;
    text-align: center;
    font-size: 16px;
    color: white;
    top: 15px;
    right: 10px;
    width: 60px;
    height: 20px;
 }
.loader{
  position: absolute;
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 64px;
  height: 64px;
  animation: spin 2s linear infinite;
  left: 50%;
  top: 50%;
  margin-top: -32px;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 100;
}
.gamecanvas{
  position: fixed;
  padding: 0%;
  margin: 0%;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0%;
  z-index: 1;
  pointer-events: all;
  background-color: transparent; 
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/*# sourceMappingURL=styles.css.map*/