@import url(https://fonts.googleapis.com/css2?family=Roboto&display=swap);
html, body {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  background: #000;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
  color: white;
}

.view {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.splash {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.splash .logo {
    padding: 0 24px;
    max-width: 100%;
  }

.splash .logo img {
      display: block;
      width: 100%;
    }

.splash .menu {
    margin-top: 24px;
  }

.splash .menu-item.menu-item-with-icon {
    display: flex;
    align-items: center;
    padding-top: 2px;
    padding-bottom: 2px;
  }

.splash .menu-item.menu-item-with-icon img {
      height: 24px;
    }

.splash .menu-item.menu-item-with-icon span {
      margin-left: 8px;
      display: block;
    }

.menu {
  position: relative;
  box-sizing: border-box;
  padding: 24px;
}

.menu .menu-item {
    cursor: pointer;
    display: block;
    padding: 4px 6px;
  }

.menu .menu-item:hover {
    background: white;
    color: black
  }

.game {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
}

.game .tools {
    display: flex;
    flex: 0 0 40px;
    padding: 24px 4px 4px;
    background: #161616;
    justify-content: space-between;
  }

.game .tools .top,
    .game .tools .bottom {
      display: flex;
    }

.game .tool-item {
    display: block;
    cursor: pointer;
    padding: 8px;
    width: 24px;
    height: 24px;
  }

.game .tool-item svg {
      fill: #fff;
    }

.game .tool-item:active {
    background: #333333;
  }

.game .tool-item.disabled svg {
      fill: #777;
    }

.game .screen {
    flex: 1 1 auto;
  }

.dosbox-container {
  width: 100%;
  height: 100%;
}

.screen {
  position: relative;
  display: flex;
  justify-content: center;
}

.screen canvas {
    width: var(--screen-width);
    height: var(--screen-height);
    image-rendering: auto !important;
  }

.screen .canvas {
    width: var(--screen-width);
    height: var(--screen-height);
    background: #333;
    height: 0;
    padding-top: 66.66666%
  }

.screen .canvas-container,
  .screen .event-blocker {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }

.screen .keyboard {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

.screen .keyboard .line {
      display: flex;
    }

.screen .keyboard .key {
      position: relative;
      box-sizing: border-box;
      margin: 2px;
      border-radius: 4px;
      width: 44px;
      height: 44px;
      color: #fff;
      background: rgba(0, 0, 0, .375);
    }

.screen .keyboard .key.active {
        background: rgba(80, 80, 80, .375);
      }

.screen .keyboard .label {
      position: absolute;
      top: 6px;
      left: 6px;
      font-size: 12px;
    }

.screen .keyboard .label .or {
        font-size: 75%;
        color: rgba(255, 255, 255, .375);
      }

.screen .keyboard .description {
      display: none;
    }

.screen .keyboard .description {
      position: absolute;
      bottom: 6px;
      left: 6px;
      font-size: 10px;
      color: rgba(255, 255, 255, .625);
    }

.screen .keyboard .key-row-2 {
      height: 92px;
    }

.screen .keyboard .key-row-3 {
      height: 140px;
    }

.screen .keyboard .key-col-2 {
      width: 92px;
    }

.screen .keyboard .key-col-3 {
      width: 140px;
    }

.message {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  background: rgba(255, 255, 255, .75);
  pointer-events: none;
}

.fade-leave-active {
  transition: opacity .5s;
}

.fade-leave-to {
  opacity: 0;
}

.version {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  position: absolute;
  right: 6px;
  bottom: 4px;
  color: #333;
  font-size: 14px;
}

.github {
  position: absolute;
  display: flex;
  right: 6px;
  top: 4px;
  color: #777;
  font-size: 12px;
  align-items: center;
}

.github svg {
    width: 14px;
    fill: #777;
  }

.github span {
    margin-left: 4px;
  }

@media (min-width: 576px) {
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
  .game {
    flex-flow: row;
  }
      .screen .keyboard .key {
        width: 60px;
        height: 60px;
      }
        .screen .keyboard .key .label {
          font-size: 14px;
        }
        .screen .keyboard .key .description {
          display: block;
        }
      .screen .keyboard .key-row-2 {
        height: 124px;
      }
      .screen .keyboard .key-row-3 {
        height: 188px;
      }
      .screen .keyboard .key-col-2 {
        width: 124px;
      }
      .screen .keyboard .key-col-3 {
        width: 188px;
      }
}

@media (min-width: 1200px) {
}

@media (orientation: landscape) {
  .game {
    flex-flow: row;
  }
    .game .tools {
      flex-flow: column;
    }
    .game .top,
    .game .bottom {
      flex-flow: column;
    }
}


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