html { 
  scroll-behavior: smooth;
}
@media (max-width: 576px) {
  html {
    zoom: 66%;
  }
  div{
    padding-left: 7px;
  }
}
body {
    margin-left: 0;
    /* padding: 15px 20px; */
    min-height: 99%;
    width: 100%;
    min-width: 600px;
    color: #56ac81;
    background: #1e1c1b;
    font-family: monospace;
    overflow-x: hidden;
    scrollbar-width: none;
    t
  }
  body::-webkit-scrollbar {
    display: none;
  }
  input {
    opacity: 0;
    position: absolute;
  }
  .cmd-deco {
    color: #2f9ad8;
    text-shadow: 0 0 2px rgb(101, 184, 184);
  }
  td {
    padding-left: 40px;
  }
  canvas {
    min-height: 100%;
    min-width: 100%;
    opacity: 40%;
    display: block;
    position: fixed;
  }
  #container {
    padding: 15px 20px;
    position: relative;
    z-index: 1;
  }
  /* 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: #56ac81;
  }
  #liner {
    font-size: large;
    padding-left: 0.2em;
    line-height: 1.3em;
    margin-top: 2px;
    padding-top: 5px;
  }
  #typer::before {
    font-size: large;
    padding-right: 0.2em;
    color: #56ac81;
    content: "terminal@cagri:~$ ";
    animation: fadeIn 4s;
  }
  
  /* Cursor End */
  div {
    display: block;
    /* line-height: 1.3em; */
    margin: 0em;
    overflow: hidden;
    margin: 0em;
    letter-spacing: 0.05em;
  }
  a.link {
    box-shadow: inset 0 0 0 0 #9cc291;
    color: #2f9dbb;
    margin: 0 -.25rem;
    padding: 0 .25rem;
    transition: color 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
  }
  a.link:hover {
    box-shadow: inset 40rem 0 0 0 #54b3d6;
    color: white;
  }
  #error{
    display: inline-block;
    font-size: large;
    color: rgb(220, 77, 77);
    text-shadow: 0 0 3px rgb(199, 86, 86);
    animation-delay: 1.5s;
    animation: shakeX;
    animation-duration: 1s;
  }
  #helper{
    display: inline-block;
    animation: heartBeat;
    animation-duration: 3s;
  }
  .typed-out{
    display: block;
    text-align: justify;
    font-size: large;
    margin-right: 20px;
    padding: 0 10px 0 0px;
    word-wrap: break-word;
    animation: lightSpeedInRight 1s;
  }
  .banner {
    text-align: center;
    animation: rubberBand;
    animation-duration: 1s;
  }
  #subtxt {
    display: inline-block;
    animation: fadeIn 2s;
  }
  .terminal-cmd {
    display: inline-block;
    font-size: large;
    /* padding: 0 0 1.5em 0; */
  }