html,
body {
  width: 100%;
  height: 100%;
  margin: 0px;
}
canvas {
  outline: none;
}
#view {
  position: absolute;
  width: 100%;
  height: 100%;
}
#fps {
  position: absolute;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    1px 1px 0 #000;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: white;
  top: 50px;
  right: 10px;
  width: 60px;
  height: 20px;
  z-index: 1000;
}
#loadingScreen {
  position: absolute;
  color: white;
  background-color: white;

  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 100;
  opacity: 1;
  pointer-events: none;

  -webkit-transition: opacity 1s ease;
  -moz-transition: opacity 1s ease;
  transition: opacity 1s ease;

  display: flex;
  justify-content: center;
  align-items: center;
}
.screen {
  position: absolute;
  color: white;
  background-color: white;

  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  opacity: 1;

  -webkit-transition: opacity 1s ease;
  -moz-transition: opacity 1s ease;
  transition: opacity 1s ease;

  display: flex;
  justify-content: center;
  align-items: center;
}
.roomIcon {
  background-image: url("../img/room.svg");
  background-repeat: no-repeat;
  background-size: 28px;
  background-position: center;
  width: 28px;
  height: 28px;
  margin: 10px;
}
.iconButton {
  position: absolute;
  right: 20px;
  height: 50px;
  width: 80px;
  background-color: #c29b7e;

  border: none;
  outline: none;
  transition: transform 0.125s ease-out;
}
.iconButton.enabled {
  background-color: #e9dcd1;
}
.menuButton {
  position: absolute;
  left: 20px;
  top: 20px;
  height: 50px;
}
button,
input[type="submit"] {
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 5px;
  border: 0;
  background-color: #c29b7e;
  padding: 10px 0;
  max-width: 187px;
  width: 100%;
  border: 1px solid #c29b7e;
}
button .icon {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(202deg)
    brightness(104%) contrast(102%);
  background-repeat: no-repeat;
  background-position: center;
}
button:hover,
input[type="submit"]:hover {
  background-color: #fff;
  color: #c29b7e;
}
button:hover.iconButton.enabled {
  background-color: #fff;
}
button:hover .icon {
  filter: invert(93%) sepia(39%) saturate(2211%) hue-rotate(296deg)
    brightness(84%) contrast(79%);
}
button.enabled .icon {
  filter: invert(69%) sepia(29%) saturate(408%) hue-rotate(343deg)
    brightness(90%) contrast(82%);
}

#mainMenuContent {
  position: absolute;
  top: 51px;
  left: 20px;
  width: 300px;
  background-color: white;
  border: 1px solid #c29b7e;
  padding: 0px;
  /*border-radius: 5px;*/
}
#mainMenu li {
  list-style: none;
  overflow: hidden;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  min-height: 40px;
  font-size: 12px;
  display: flex;
  align-items: center;
}
#mainMenu li.enabled {
  background-color: #e9dcd1;
  color: #c29b7e;
  font-weight: bold;
}
#mainMenu li.no-icon {
  padding-left: 48px;
}
#mainMenu li:hover {
  color: #fff;
  background-color: #c29b7e;
}
#mainMenu li:hover .roomIcon {
  filter: invert(100%);
}
#mainMenu li.enabled .roomIcon {
  filter: invert(69%) sepia(29%) saturate(408%) hue-rotate(343deg)
    brightness(90%) contrast(82%);
}
.messageText {
  color: black;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.7px;
  padding: 25px;
}
.progressBar {
  background: linear-gradient(
    -45deg,
    #c29b7eed 25%,
    transparent 0,
    transparent 50%,
    #c29b7e 0,
    #c29b7e 75%,
    transparent 0
  );
  background-color: #c29b7e;
  background-size: auto;
  background-color: #e9dcd1;
  background-size: 30px 30px;
  border-radius: 40px;
  height: 100%;
  position: absolute;
  -webkit-transition: width 0.2s cubic-bezier(0.4, 1, 0.75, 0.9);
  transition: width 0.2s cubic-bezier(0.4, 1, 0.75, 0.9);
  width: 100%;

  animation: linear-progress-bar-stripes 0.3s linear infinite reverse;
}
.shadow {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
@keyframes linear-progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 0;
  }
}
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0, 0); /* Fallback color */
  }
  
