body {
  /*margin: 0;
  padding: 0;
  overflow: hidden;*/
  background-color: rgb(100, 100, 100);


  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  /* 
    display: flex;


        height: 100%;
  
      This centers our sketch horizontally. 
      justify-content: center;
  
      /* This centers our sketch vertically. 
      align-items: center;*/
}


.messageStyle {
  position: absolute;
  overflow: hidden;
  background: rgba(50, 50, 50, .3);
  color: white;
  user-select: none;
  outline: none;
  cursor: default;
  resize: none;
  font-size: 18px;
}



.btnRespawn {
  position: absolute;
  overflow: hidden;

  bottom:50%;
  padding: 0px;
  margin-left: auto;
  margin-right: auto;
 
  left: 0;
  right: 0;
  width: fit-content;
}


.usernameDiv {
  position: absolute;
  overflow: hidden;

  bottom:6%;
  padding: 0px;
  margin-left: auto;
  margin-right: auto;
 
  left: 0;
  right: 0;
  width: fit-content;
}




.usernameLabel {
  background: rgba(50, 50, 50, .6);
  color: white;
  user-select: none;
  outline: none;
  cursor: default;
  resize: none;
  font-size: 30px;
  padding: 0px;
  margin: 0px;
  width: fit-content;
}

.usernameBox {
  background: rgba(50, 50, 50, .6);
  color: white;
  user-select: none;
  outline: none;
  cursor: default;
  resize: none;
  font-size: 20px;
  padding: 0px;
  margin: 0px;
}

.cloudsvideo {
  position: absolute;
  overflow: hidden;

  padding: 0px;
  margin: 0px;
 
  width: 100%;
  height: 100%;
  object-fit: fill;

}

.warhawkarena {
  position: absolute;
  overflow: hidden;

  top:6%;
  padding: 0px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;

  max-height: 70%;
 
  
  max-width: 100%;

    left: 0;
    right: 0;

}

.loader {
  position: absolute;
  overflow: hidden;

  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid hsl(0, 0%, 56%); /* Blue */
  border-radius: 50%;

  margin-left: auto;
  margin-right: auto;
  
  bottom:6%;

  width: 50px;
  height: 50px;

  left: 0;
  right: 0;

  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}