@font-face {
  font-family: 'Win98';
  src: url('fonts/98Reg.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Win98';
  src: url('fonts/98Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

body {
  background: black;
  margin: 0;
  padding: 10px;
  font-family: 'Win98', sans-serif;
  color: #cb00ff;
}

.window {
  width: 600px;
  border: 2px solid #000;
  box-shadow: 2px 2px black;
}

.title-bar {
  background: #500064;
  color: white;
  padding: 4px 8px;
  font-family: 'Win98', sans-serif;
  font-weight: bold;
}

.terminal {
  background: black;
  padding: 10px;
  font-size: 14px;
  height: 400px;
  overflow-y: auto;
}

#terminal-output {
  white-space: pre-wrap;
}

.input-line {
  display: flex;
  align-items: center;
}

.prompt {
  margin-right: 4px;
  white-space: nowrap;
}

#terminal-input {
  background: black;
  color: #cb00ff;
  border: none;
  outline: none;
  font-family: 'Win98', sans-serif;
  font-size: 14px;
  width: 100%;
}
