body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Atkinson Hyperlegible Mono", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  background-color: #000;
  overflow: hidden;
  position: relative; /* Required for the absolute positioning of the canvas */
}

* {
  margin: 0;
  padding: 0;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 20%;
}

.container {
  position: relative;
  box-shadow: 0px 13px 24px 7px rgba(0, 0, 0, 0.2);
  width: 700px;
  height: 415px;
  z-index: 1;
}

.input-wrapper {
  display: flex;
  flex-direction: row;
}

.input-field {
  color: #1eff8e;
  background: transparent;
  border: none;
  outline: none;
  font-size: 12px;
  padding: 0;
  font-family: "Atkinson Hyperlegible Mono", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-align: left;
  white-space: nowrap;
}

.input-field:active {
  border: none;
}

.output {
  color: #23cb77;
  padding-left: 5px;
  padding-right: 50px;
  overflow-y: auto;
}

.terminal_toolbar {
  display: flex;
  height: 30px;
  align-items: center;
  padding: 0 8px;
  box-sizing: border-box;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background: #212121;
  justify-content: space-between;
}

.butt {
  display: flex;
  align-items: center;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-right: 5px;
  font-size: 8px;
  height: 12px;
  width: 12px;
  box-sizing: border-box;
  border: none;
  border-radius: 100%;
  background: linear-gradient(#7d7871 0%, #595953 100%);
  text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.2);
  box-shadow: 0px 0px 1px 0px #41403a, 0px 1px 1px 0px #474642;
}

.btn-color {
  background: #ee411a;
}

.btn:hover {
  cursor: pointer;
}

.btn:focus {
  outline: none;
}

.butt--exit {
  background: linear-gradient(#f37458 0%, #de4c12 100%);
}

.add_tab {
  border: 1px solid #fff;
  color: #fff;
  padding: 0 6px;
  border-radius: 4px 4px 0 0;
  border-bottom: none;
  cursor: pointer;
}

.user {
  color: #d5d0ce;
  margin-left: 6px;
  font-size: 14px;
  line-height: 15px;
}

.terminal_body {
  background: rgb(18, 18, 18);
  height: calc(100% - 30px);
  padding-top: 2px;
  margin-top: -1px;
  padding-bottom: 10px;
  font-size: 12px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: scroll;
  overflow-x: hidden;
  border-style: solid;
  border-width: 2px;
  border-color: #212121;
}

.terminal_promt {
  display: flex;
}

.terminal_promt span {
  padding-left: 5px;
}

.terminal_user {
  color: #1eff8e;
}

.terminal_location {
  color: #4878c0;
}

.terminal_bling {
  color: #dddddd;
}

@keyframes curbl {
  0% {
    background: #ffffff;
  }

  49% {
    background: #ffffff;
  }

  60% {
    background: transparent;
  }

  99% {
    background: transparent;
  }

  100% {
    background: #ffffff;
  }
}
