* {
  margin: 0;
  padding: 0;
  font-family: "Consolas", monospace;
  image-rendering: pixelated;
}

html, body {
  width: 100%;
  height: 100%;
}

p {
  line-height: 0;
}

body {
  background-color: black;
  overflow: hidden;
  color: white;
  font-size: 12px;
}

#elm-root {
  min-width: 640px;
  min-height: 480px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#elm-root.in-game {
  background-color: #3C3C3C;
}

h1 {
  display: none;
}

a:link, a:visited {
  color: inherit;
  text-decoration: none;
}

a:hover, a:focus, a:active {
  text-decoration: none;
}

#wrapper {
  align-items: center;
  display: flex;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

#border {
  width: 559px;
  height: 480px;
  background-color: black;
  display: flex;
  /* to prevent weird extra space at the bottom */
  position: relative;
  /* to allow absolute positioning of descendants*/
  box-shadow: 0 0 0 1px #828282, 0 0 0 2px #717171, 0 0 0 3px #616161, 0 0 0 4px #515151;
  margin: 4px;
  margin-left: 80px;
}

@media (max-width: 720px) {
  #elm-root.in-game {
    justify-content: flex-end;
  }
}
@media (min-width: 720px) {
  #elm-root.in-game {
    justify-content: center;
  }
}
.overlay {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.textOverlay {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0.5;
}

.textInUpperLeftCorner {
  position: absolute;
  top: 16px;
  left: 16px;
}

.largeDigit {
  width: 28px;
  height: 43px;
  display: inline-block;
  -webkit-mask-image: url("../resources/digits-large.png");
  mask-image: url("../resources/digits-large.png");
}

.character {
  display: inline-block;
  -webkit-mask-image: url("../resources/fonts/bgi-default-8x8.png");
  mask-image: url("../resources/fonts/bgi-default-8x8.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: auto 100%;
  mask-size: auto 100%;
}

.dialogOverlay {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.dialog {
  border: 1px solid white;
  padding: 12px;
  background-color: black;
}
.dialog p {
  line-height: 12px;
  margin-bottom: 16px;
}
.dialog button {
  width: calc(50% - 6px);
  min-width: 96px;
}
.dialog button:not(:last-child) {
  margin-right: 8px;
}

button {
  background-color: black;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  height: 32px;
  cursor: pointer;
}
button.focused {
  border-color: white;
}
button:hover {
  border-color: white;
  background-color: rgba(255, 255, 255, 0.1);
}

#splashScreen {
  width: 640px;
  height: 480px;
  background-image: url("../resources/splash.png");
}

#lobby {
  width: 640px;
  height: 480px;
  padding-top: 50px;
  padding-left: 80px;
  box-sizing: border-box;
}
#lobby .playerEntry {
  width: 100%;
  height: 50px;
}
#lobby .playerEntry > div {
  height: 100%;
  display: inline-block;
  line-height: 0;
  vertical-align: top;
}
#lobby .playerEntry .controls {
  width: 160px;
}

#scoreboard {
  width: 77px;
  box-sizing: border-box;
  padding: 20px 12px 0 9px;
}
#scoreboard .scoreboardEntry {
  height: 80px;
}

#endScreen {
  position: relative;
  width: 640px;
  height: 480px;
}
#endScreen #results {
  margin-top: 80px;
  margin-left: 250px;
}
#endScreen .resultsEntry {
  height: 40px;
}
#endScreen #KONEC_HRY {
  position: absolute;
  left: 180px;
  bottom: 17px;
}

#canvas_main {
  background-color: black;
  overflow: hidden;
}

.canvasHeight {
  height: 480px;
}

#left {
  box-sizing: border-box;
  width: 1px;
  /* so width of #wrapper is an even number */
}

/*# sourceMappingURL=Zatacka.css.map */
