/* 
    Change colors for:
        1. Background
        2. Normal Text 
        3. Keywords (commands)
        4. Hover
        5. Banner
*/

:root{
  --bg1 : #211D1B;
  --text1 : #519975;
  --command1 : #73ABAD;
  --cursor-color1: #73ABAD;
  --index1 : ;

  /* Vs */
  --bg2 : #1E1E1E;
  --bg-select2: #2B537A;
  --text2: #9DDCFE;
  /* --text2: #D4D4D4; */
  /* --command2: #D7BA7D; */
  --command2: #D4D4D4;
  --cursor-color2: #D7BA7D;
  --links : #B25FAE;
}

body {
    margin: 0;
    padding: 15px 20px;
    min-height: 99%;
    /* height: 100vh; */
    width: 100%;
    min-width: 550px;
    /* Text color */
    color: var(--text2);
    /* Background */
    background: var(--bg2);
    font-family: cursor, monospace;
    overflow-x: hidden;
    position: relative;
  }
  ::selection {
    /* color: #211830; */
    color: var(--bg-select2);
    /* background-color: #519975; */
    background-color: var(--text2);
  }
  ::-moz-selection {
    /* color: #211830; */
    color: var(--bg-select2);
    /* background-color: #519975; */
    background-color: var(--text2);
  }
  textarea {
    left: -1000px;
    position: absolute;
  }
  b {
    font-weight: bold;
    text-decoration: underline;
  }

  /* Cursor Start */
  .cursor {
    font-size: 12px;
    /* color: #73ABAD; */
    /* background-color: #73ABAD; */
    color: var(--cursor-color2);
    background-color: var(--cursor-color2);
    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-window {
    cursor: text;
    height: 50px;
    /* color: #73ABAD; */
    color: var(--cursor-color2);
  }
  #liner {
    line-height: 1.3em;
    margin-top: -2px;
    animation: show 0.5s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
  }
  #liner::before {
    /* color: #519975; */
    color: var(--text2);
    content: "visitor:~$";
  }
  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  /* Cursor End */
  
  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: 0px;
  }
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }
  .index {
    color: #DCDCCC;
  }
  .color2 {
    /* Normal descriptive text apart from  */
    /* color: #B89076; */
    color: var(--command2);
  }

  /* Keywords */
  .command {
    /* Same as cursor just with shadows */
    /* color: #73ABAD; */
    color: var(--cursor-color2);
    /* text-shadow: 0 0 5px #73ABAD;  */
    text-shadow: 0 0 5px var(--cursor-color2); 
  }

  .white {
    color: #fff;
  }
  .inherit,
  a {
    /* Links */
    /* color: #9C8394; */
    color: var(--links);
  }
  a {
    text-decoration: inherit;
  }
  a:hover {
    /* Hover for links */
    /* Background same as cursor */
    background: #73ABAD;
    color: #211830;
  }
  a:focus {
    outline: 0;
  }
