* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Roboto Mono", monospace;
  color: #ffffff;
  padding: 10px;
}
body .terminal {
  border-radius: 10px;
  width: 100%;
  max-width: 726px;
  height: 100%;
  max-height: 374px;
  box-shadow: 0 50px 100px rgba(50, 50, 93, 0.15), 0 15px 35px rgba(50, 50, 93, 0.2), 0 5px 15px rgba(0, 0, 0, 0.12);
}
body .terminal .controls {
  background-color: #3E3E3E;
  padding: 5px;
  display: flex;
  border-radius: 10px 10px 0px 0px;
  position: relative;
}
body .terminal .controls .control {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  margin-left: 5px;
  cursor: pointer;
}
body .terminal .controls .close {
  background-color: #E52A2A;
}
body .terminal .controls .min {
  background-color: #E5BC2A;
}
body .terminal .controls .max {
  background-color: #2AE53D;
}
body .terminal .controls .user {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 11px;
  font-weight: 700;
  color: #C2C2C2;
}
body .terminal .terminal-window {
  background-color: #131212;
  height: 100%;
  border-radius: 10px;
  margin-top: -20px;
  padding: 40px 20px 20px 20px;
  overflow: auto;
  max-height: -webkit-fill-available;
}
body .terminal .terminal-window .output {
  width: 100%;
}
body .terminal .terminal-window .output .message {
  width: -moz-fit-content;
  width: fit-content;
}
body .terminal .terminal-window .input {
  width: 100%;
}
body .terminal .terminal-window .input .user-message {
  position: relative;
}
body .terminal .terminal-window .input .user-message::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 18px;
  top: 2px;
  right: -10px;
  animation: blink 1s step-start 0s infinite;
  background: #ffffff;
}
body .terminal .terminal-window .input .message-hint {
  margin-left: 10px;
}
body .terminal .terminal-window .input .message-hint .hint {
  color: gray;
}
body .terminal .terminal-window .input .user-message-input {
  opacity: 0;
  position: relative;
}
body .terminal .terminal-window::-webkit-scrollbar {
  display: none;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */