.title-lvl0 {
    font-size: 24px;
    text-align: center;
}

.content1 {

    margin-top: 10%;
}

.code {
    background-color: rgb(42, 42, 42);
    height: 200px;
    border-radius: 8px;
    text-align: center;
}

.linux {
    background-color: #323232;
}

textarea {
    left: -1000px;
    position: absolute;
  }
  b {
    font-weight: bold;
    text-decoration: underline;
  }
  /* Cursor Start */
  .cursor {
    font-size: 12px;
    color: #73ABAD;
    background-color: #73ABAD;
    position: relative;
    opacity: 1;
    height: 1.5em;
    width: 10px;
    max-width: 10px;
    transform: translateY(4px);
    overflow: hidden;
    text-indent: -5px;
    display: inline-block;
    text-decoration: blink;
    animation: blinker 1s linear infinite;
  }
  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }
  #command {
    cursor: text;
    height: 50px;
    color: #73ABAD;
  }
  #liner {
    line-height: 1.3em;
    margin-top: -2px;
    animation: show 0.5s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
  }
  #liner::before {
    color: #519975;
    content: "user@ITIS:~$";
  }
  #liner.password::before {
    content: "Password:";
  }
  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  /* Cursor End */
  .terminal p {
    display: block;
    line-height: 1.3em;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
    letter-spacing: 0.05em;
    animation: typing 0.5s steps(30, end);
  }
  .no-animation {
    animation: typing 0 steps(30, end);
  }
  .margin {
    margin-left: 20px;
  }
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  .index {
    color: #DCDCCC;
  }
  .color2 {
    color: #B89076;
  }
  .command {
    color: #73ABAD;
    text-shadow: 0 0 5px #73ABAD; 
  }
  .error {
    color: #B89076;
  }
  .white {
    color: #fff;
  }
  .inherit,
  .terminal a {
    color: #9C8394;
  }
  .terminal a {
    text-decoration: inherit;
  }
  .terminal a:hover {
    background: #73ABAD;
    color: #211830;
  }
  .terminal a:focus {
    outline: 0;
  }