* {
  border: 0;
  padding: 0;
  margin: 0;
  outline: none;
  box-sizing: border-box;
  background-color: transparent;
  user-select: none;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-width: 700px;
  background-color: #f5f2e8;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

#unity-canvas {
  width: 100%;
  height: 100%;
  min-width: 746px;
  position: relative;
  background-color: #f5f2e8 !important;
}

#mainContainer {
  height: 100%;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  background-color: #f5f2e8;
}

#gameContainer {
  width: 100%;
  height: 100%;
  min-width: 746px;
  position: relative;
  background-color: #f5f2e8 !important;
}

#bannerContainer {
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 100%;
  display: none;
}

#btnContainer {
  position: fixed;
  overflow: hidden;
  bottom: 13px;
  right: 12px;
  background-color: #faeeec;
  border-radius: 18px;
  padding: 0 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.15),
    inset 0 0 1px rgba(0, 0, 0, 0.5);
}

#btnContainer > button {
  width: 40px;
  height: 36px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 28px;
  transition: all 0.3s;
  cursor: pointer;
}

#btnContainer > button:hover {
  background-color: rgba(0, 0, 0, 0.08);
}

#btnContainer > button:active {
  background-color: rgba(0, 0, 0, 0.2);
}

#btnContainer > button.fullscreen {
  background-image: url("../images/fullscreen.svg");
}

#btnContainer > button.bug-report {
  background-image: url("../images/bug-report.svg");
}

#gameContainer > .logo {
  position: absolute;
  z-index: 100;
  display: block;
  width: 64px;
  height: 64px;
  top: 50%;
  left: 50%;
  margin: -64px 0 0 -32px;
  background: url("../images/logo-ghost.svg") 50% 50% no-repeat;
}

#gameContainer > .progress {
  position: absolute;
  z-index: 100;
  width: 240px;
  height: 6px;
  top: 50%;
  left: 50%;
  margin: 57px 0 0 -120px;
  border-radius: 3px;
  overflow: hidden;
  background-color: #e5dfd8;
}

#gameContainer > .progress .full {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 6px;
  border-radius: 3px;
  background-color: #8cf89d;
}
