/* ===== Determine Screen Size ===== */

@media only screen and (max-width: 660px) {
  .window {
    margin: auto auto;
    width: 100%;
    height: 100%;
  }

  .menubar, .status-bar {
    height: 0;
    visibility: hidden;
  }

  .pccom-body {
    height: 93vh;
  }
}

@media only screen and (min-width: 660px) {
  .window {
    margin: 30px auto;
    width: 640px;
  }

  .pccom-body {
    height: 480px;
  }
}

@media only screen and (min-width: 1000px) {
  body {
    zoom: 1.25;
  }
}

/* ================================= */

/* link style */
a:link {
  color: white;
}
a:visited {
  color: white;
}

@font-face {
    font-family: 'RoundedFixedsys';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/DungGeunMo.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

body {
  background-color: #007c7c;
}

.title-bar, .window, button, input, label, legend, li[role="tab"], option, select, table, textarea, ul.tree-view {
  font-family: gulim,sans-serif;
  font-size: 12px;
}

title-bar-text {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.pccom-body {
  margin: 0;
  padding: 3px;
  background-color: #00007a;
  font-family: RoundedFixedsys;
  color: white;
  font-size: 16px;
  overflow-y: scroll;
  box-shadow: inset -1px -1px #fff,inset 1px 1px grey,inset -2px -2px #dfdfdf,inset 2px 2px #0a0a0a;
  display: block;
}

label {
  font-family: RoundedFixedsys;
  color: white;
  font-size: 16px;
}

.prompt {
  margin: 0;
}

.input-container {
  margin-top: 2px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

#command {
  margin-left: -4px;
  background: transparent;
  box-shadow: none;
  font-family: RoundedFixedsys;
  color: white;
  font-size: 16px;
  width: 85%
}

#command-output {
  margin: 0;
}

.text-invert {
  background-color: white;
  color: #00007a;
}