#terminal_window {
    position: fixed;
    margin: 0;
    padding: 0;
    width: 65vw;
    height: 65vh;
    color: #519975;
    background: rgba(33, 29, 27, 0.5);
    font-family: cursor, monospace;
    text-align: left;
    z-index: 1001;
    top: 50%;
    left: 50%;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.33);
    box-shadow: 0 0 22px rgba(0,0,0,0.75);
    transform: translate(-50% , -50%);
}
#terminal_window_header {
    width: 100%;
    min-width: 25vw;
    position: sticky;
    max-height: 39px;
    min-height: 39px;
    top: 0;
    left: 0;
    display: flex;
    background-color: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.8);
    flex-direction: row;
    justify-content: space-between;
}
#terminal_window_header > span {
    width: 160px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#terminal_window_header > span > span {
    cursor: pointer;
}
#terminal_window #terminal {
    padding: 10px 15px 5px 15px;
}
#terminal_window #command {
    padding: 0px 15px;
}
#terminal ::selection {
    color: #211830;
    background-color: #519975;
}
#terminal ::-moz-selection {
    color: #211830;
    background-color: #519975;
}
#command textarea {
    left: -1000px;
    position: absolute;
}
#terminal b {
    font-weight: bold;
    text-decoration: underline;
}
/* Cursor Start */
#command .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;
    }
}
#terminal #command {
    cursor: text;
    height: 50px;
    color: #73ABAD;
    display: none;
}
#command #liner {
    line-height: 1.3em;
    font-size: 16px;
    margin-top: -2px;
    animation: show 0.5s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
    letter-spacing: 0.05em;
}
#command #liner::before {
    color: #519975;
    letter-spacing: 0.05em;
    content: attr(data-user) "@3̴̛͕$̵̧͝Ŕ̷̨#̷͙͊r̷̩̽:" attr(data-directory) "$";
}
#command #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;
    white-space: nowrap;
    overflow: hidden;
    margin: 0;
    letter-spacing: 0.05em;
    animation: typing 1s steps(30, end);
    font-size: 16px;
}
#terminal .no-animation {
    animation: typing 0 steps(30, end);
}
#terminal .margin {
    margin-left: 20px;
}
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
#terminal .index {
    color: #DCDCCC;
}
#terminal .color2 {
    color: #B89076;
}
#terminal .command {
    color: #73ABAD;
    text-shadow: 0 0 5px #73ABAD;
}
#terminal .error {
    color: #B89076;
}
#terminal .glitch {
    display: block;
    color: #766671;
}
#terminal .glitch > span {
  color: #766671;
  position: relative;
  margin: 0 auto;
  outline: none;
  -webkit-animation: cray 6s infinite steps(50);
          animation: cray 6s infinite steps(50);
  display: inline-block;
}

@keyframes noise-anim {
  0% {
    clip: rect(84px, 9999px, 22px, 0);
  }
  5% {
    clip: rect(43px, 9999px, 84px, 0);
  }
  10% {
    clip: rect(33px, 9999px, 28px, 0);
  }
  15% {
    clip: rect(39px, 9999px, 88px, 0);
  }
  20% {
    clip: rect(72px, 9999px, 83px, 0);
  }
  25% {
    clip: rect(80px, 9999px, 99px, 0);
  }
  30% {
    clip: rect(44px, 9999px, 81px, 0);
  }
  35% {
    clip: rect(36px, 9999px, 36px, 0);
  }
  40% {
    clip: rect(57px, 9999px, 93px, 0);
  }
  45% {
    clip: rect(62px, 9999px, 88px, 0);
  }
  50% {
    clip: rect(83px, 9999px, 79px, 0);
  }
  55% {
    clip: rect(26px, 9999px, 93px, 0);
  }
  60% {
    clip: rect(41px, 9999px, 3px, 0);
  }
  65% {
    clip: rect(90px, 9999px, 82px, 0);
  }
  70% {
    clip: rect(25px, 9999px, 44px, 0);
  }
  75% {
    clip: rect(77px, 9999px, 5px, 0);
  }
  80% {
    clip: rect(13px, 9999px, 3px, 0);
  }
  85% {
    clip: rect(26px, 9999px, 96px, 0);
  }
  90% {
    clip: rect(18px, 9999px, 12px, 0);
  }
  95% {
    clip: rect(93px, 9999px, 87px, 0);
  }
  100% {
    clip: rect(38px, 9999px, 43px, 0);
  }
}
#terminal .glitch > span:after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  text-shadow: -1px 0 red;
  top: 0;
  color: #9C8394;
  background: black;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim 2s infinite linear alternate-reverse;
}

@keyframes noise-anim-2 {
  0% {
    clip: rect(11px, 9999px, 82px, 0);
  }
  5% {
    clip: rect(66px, 9999px, 85px, 0);
  }
  10% {
    clip: rect(95px, 9999px, 11px, 0);
  }
  15% {
    clip: rect(91px, 9999px, 48px, 0);
  }
  20% {
    clip: rect(45px, 9999px, 84px, 0);
  }
  25% {
    clip: rect(34px, 9999px, 37px, 0);
  }
  30% {
    clip: rect(74px, 9999px, 61px, 0);
  }
  35% {
    clip: rect(64px, 9999px, 66px, 0);
  }
  40% {
    clip: rect(97px, 9999px, 70px, 0);
  }
  45% {
    clip: rect(13px, 9999px, 46px, 0);
  }
  50% {
    clip: rect(63px, 9999px, 52px, 0);
  }
  55% {
    clip: rect(46px, 9999px, 9px, 0);
  }
  60% {
    clip: rect(9px, 9999px, 75px, 0);
  }
  65% {
    clip: rect(93px, 9999px, 73px, 0);
  }
  70% {
    clip: rect(32px, 9999px, 3px, 0);
  }
  75% {
    clip: rect(93px, 9999px, 98px, 0);
  }
  80% {
    clip: rect(67px, 9999px, 36px, 0);
  }
  85% {
    clip: rect(55px, 9999px, 22px, 0);
  }
  90% {
    clip: rect(31px, 9999px, 67px, 0);
  }
  95% {
    clip: rect(100px, 9999px, 28px, 0);
  }
  100% {
    clip: rect(65px, 9999px, 97px, 0);
  }
}
#terminal .glitch > span:before {
  content: attr(data-text);
  position: absolute;
  left: -2px;
  text-shadow: 1px 0 blue;
  top: 0;
  color: #9C8394;
  background: black;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim-2 3s infinite linear alternate-reverse;
}

.portfolio-experiment .experiment-title {
  font-size: 10vw;
  text-align: center;
  font-family: "Roboto", monospace;
  min-height: 10vw;
  max-width: 80vw;
  min-width: 10vw;
}
@-webkit-keyframes cray {
  2% {
    font-weight: 100;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    color: #766671;
  }
  4% {
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    color: #a17d97;
  }
  6% {
    font-weight: 200;
    font-style: italic;
    text-decoration: none;
    text-transform: none;
    color: #a17d97;
  }
  8% {
    font-weight: 700;
    font-style: normal;
    text-decoration: underline;
    text-transform: none;
    color: #a17d97;
  }
  10% {
    font-weight: 200;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    color: #a17d97;
  }
  12% {
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    color: #6c5e68;
  }
  14% {
    font-weight: 400;
    font-style: normal;
    text-decoration: underline;
    text-transform: capitalize;
    color: #564150;
  }
  16% {
    font-weight: 600;
    font-style: italic;
    text-decoration: line-through;
    text-transform: lowercase;
    color: #976f8b;
  }
  18% {
    font-weight: 400;
    font-style: normal;
    text-decoration: underline;
    text-transform: none;
    color: #766671;
  }
  20% {
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    color: #6c5e68;
  }
  22% {
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    color: #6c5e68;
  }
  24% {
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    color: #6c5e68;
  }
  26% {
    font-weight: 400;
    font-style: italic;
    text-decoration: none;
    text-transform: none;
    color: #6c5e68;
  }
  28% {
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    text-transform: capitalize;
    color: #564150;
  }
  30% {
    font-weight: 300;
    font-style: italic;
    text-decoration: none;
    text-transform: none;
    color: #564150;
  }
  32% {
    font-weight: 100;
    font-style: italic;
    text-decoration: none;
    text-transform: none;
    color: #564150;
  }
  34% {
    font-weight: 300;
    font-style: normal;
    text-decoration: line-through;
    text-transform: capitalize;
    color: #564150;
  }
  36% {
    font-weight: 500;
    font-style: normal;
    text-decoration: none;
    text-transform: capitalize;
    color: #976f8b;
  }
  38% {
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-transform: capitalize;
    color: #976f8b;
  }
  40% {
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    color: #976f8b;
  }
  42% {
    font-weight: 600;
    font-style: italic;
    text-decoration: none;
    text-transform: none;
    color: #976f8b;
  }
  44% {
    font-weight: 400;
    font-style: italic;
    text-decoration: underline;
    text-transform: none;
    color: #766671;
  }
  46% {
    font-weight: 200;
    font-style: normal;
    text-decoration: underline;
    text-transform: uppercase;
    color: #766671;
  }
  48% {
    font-weight: 700;
    font-style: normal;
    text-decoration: underline;
    text-transform: lowercase;
    color: #766671;
  }
  50% {
    font-weight: 100;
    font-style: normal;
    text-decoration: underline;
    text-transform: none;
    color: #766671;
  }
  52% {
    font-weight: 600;
    font-style: normal;
    text-decoration: none;
    text-transform: uppercase;
    color: #8b7885;
  }
  54% {
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    color: #8b7885;
  }
  56% {
    font-weight: 100;
    font-style: normal;
    text-decoration: none;
    text-transform: uppercase;
    color: #8b7885;
  }
  58% {
    font-weight: 600;
    font-style: normal;
    text-decoration: none;
    text-transform: lowercase;
    color: #8b7885;
  }
  60% {
    font-weight: 400;
    font-style: normal;
    text-decoration: line-through;
    text-transform: lowercase;
    color: #72576b;
  }
  62% {
    font-weight: 200;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    color: #72576b;
  }
  64% {
    font-weight: 100;
    font-style: italic;
    text-decoration: none;
    text-transform: none;
    color: #72576b;
  }
  66% {
    font-weight: 600;
    font-style: normal;
    text-decoration: none;
    text-transform: capitalize;
    color: #72576b;
  }
  68% {
    font-weight: 500;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    color: #a17d97;
  }
  70% {
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    color: #a17d97;
  }
  72% {
    font-weight: 100;
    font-style: normal;
    text-decoration: line-through;
    text-transform: none;
    color: #a17d97;
  }
  74% {
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    color: #a17d97;
  }
  76% {
    font-weight: 100;
    font-style: normal;
    text-decoration: none;
    text-transform: uppercase;
    color: #6c5e68;
  }
  78% {
    font-weight: 500;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    color: #6c5e68;
  }
  80% {
    font-weight: 400;
    font-style: italic;
    text-decoration: none;
    text-transform: none;
    color: #6c5e68;
  }
  82% {
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-transform: capitalize;
    color: #6c5e68;
  }
  84% {
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    color: #564150;
  }
  86% {
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    color: #564150;
  }
  88% {
    font-weight: 100;
    font-style: normal;
    text-decoration: underline;
    text-transform: capitalize;
    color: #564150;
  }
  90% {
    font-weight: 600;
    font-style: normal;
    text-decoration: none;
    text-transform: capitalize;
    color: #564150;
  }
  92% {
    font-weight: 500;
    font-style: italic;
    text-decoration: none;
    text-transform: uppercase;
    color: #976f8b;
  }
  94% {
    font-weight: 600;
    font-style: normal;
    text-decoration: line-through;
    text-transform: none;
    color: #976f8b;
  }
  96% {
    font-weight: 600;
    font-style: normal;
    text-decoration: line-through;
    text-transform: none;
    color: #976f8b;
  }
  98% {
    font-weight: 100;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    color: #976f8b;
  }
}
@keyframes cray {
  2% {
    font-weight: 100;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
  }
  4% {
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
  }
  6% {
    font-weight: 200;
    font-style: italic;
    text-decoration: none;
    text-transform: none;
  }
  8% {
    font-weight: 700;
    font-style: normal;
    text-decoration: underline;
    text-transform: none;
  }
  10% {
    font-weight: 200;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
  }
  12% {
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
  }
  14% {
    font-weight: 400;
    font-style: normal;
    text-decoration: underline;
    text-transform: capitalize;
  }
  16% {
    font-weight: 600;
    font-style: italic;
    text-decoration: line-through;
    text-transform: lowercase;
  }
  18% {
    font-weight: 400;
    font-style: normal;
    text-decoration: underline;
    text-transform: none;
  }
  20% {
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
  }
  22% {
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
  }
  24% {
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
  }
  26% {
    font-weight: 400;
    font-style: italic;
    text-decoration: none;
    text-transform: none;
  }
  28% {
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    text-transform: capitalize;
  }
  30% {
    font-weight: 300;
    font-style: italic;
    text-decoration: none;
    text-transform: none;
  }
  32% {
    font-weight: 100;
    font-style: italic;
    text-decoration: none;
    text-transform: none;
  }
  34% {
    font-weight: 300;
    font-style: normal;
    text-decoration: line-through;
    text-transform: capitalize;
  }
  36% {
    font-weight: 500;
    font-style: normal;
    text-decoration: none;
    text-transform: capitalize;
  }
  38% {
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-transform: capitalize;
  }
  40% {
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
  }
  42% {
    font-weight: 600;
    font-style: italic;
    text-decoration: none;
    text-transform: none;
  }
  44% {
    font-weight: 400;
    font-style: italic;
    text-decoration: underline;
    text-transform: none;
  }
  46% {
    font-weight: 200;
    font-style: normal;
    text-decoration: underline;
    text-transform: uppercase;
  }
  48% {
    font-weight: 700;
    font-style: normal;
    text-decoration: underline;
    text-transform: lowercase;
  }
  50% {
    font-weight: 100;
    font-style: normal;
    text-decoration: underline;
    text-transform: none;
  }
  52% {
    font-weight: 600;
    font-style: normal;
    text-decoration: none;
    text-transform: uppercase;
  }
  54% {
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
  }
  56% {
    font-weight: 100;
    font-style: normal;
    text-decoration: none;
    text-transform: uppercase;
  }
  58% {
    font-weight: 600;
    font-style: normal;
    text-decoration: none;
    text-transform: lowercase;
  }
  60% {
    font-weight: 400;
    font-style: normal;
    text-decoration: line-through;
    text-transform: lowercase;
  }
  62% {
    font-weight: 200;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
  }
  64% {
    font-weight: 100;
    font-style: italic;
    text-decoration: none;
    text-transform: none;
  }
  66% {
    font-weight: 600;
    font-style: normal;
    text-decoration: none;
    text-transform: capitalize;
  }
  68% {
    font-weight: 500;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
  }
  70% {
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
  }
  72% {
    font-weight: 100;
    font-style: normal;
    text-decoration: line-through;
    text-transform: none;
  }
  74% {
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
  }
  76% {
    font-weight: 100;
    font-style: normal;
    text-decoration: none;
    text-transform: uppercase;
  }
  78% {
    font-weight: 500;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
  }
  80% {
    font-weight: 400;
    font-style: italic;
    text-decoration: none;
    text-transform: none;
  }
  82% {
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-transform: capitalize;
  }
  84% {
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
  }
  86% {
    font-weight: 300;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
  }
  88% {
    font-weight: 100;
    font-style: normal;
    text-decoration: underline;
    text-transform: capitalize;
  }
  90% {
    font-weight: 600;
    font-style: normal;
    text-decoration: none;
    text-transform: capitalize;
  }
  92% {
    font-weight: 500;
    font-style: italic;
    text-decoration: none;
    text-transform: uppercase;
  }
  94% {
    font-weight: 600;
    font-style: normal;
    text-decoration: line-through;
    text-transform: none;
  }
  96% {
    font-weight: 600;
    font-style: normal;
    text-decoration: line-through;
    text-transform: none;
  }
  98% {
    font-weight: 100;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
  }
}

#terminal .white {
    color: #fff;
}
#terminal .inherit, #terminal a {
    color: #9C8394;
}
#terminal a {
    text-decoration: inherit;
}
#terminal a:hover {
    background: #73ABAD;
    color: #211830;
}
#terminal a:focus {
    outline: 0;
}

@media screen and (max-width: 1200px) {
    #terminal_window {
        width: 99vw;
        height: 90vh;
    }
    #terminal p, #command #liner {
        font-size: 3vw;
    }
    #command .cursor {
        height: 1.5em;
        width: 10px;
    }
    #terminal_window #terminal_holder {
        padding: 45px 5px 0;
    }
    #terminal_window #terminal {
        padding: 5px 5px 0px 5px;
    }
    #terminal_window #command {
        padding: 0px 5px;
    }
}
.wrap {
    white-space: break-spaces !important;
}

#terminal p.file {
    color: #B57850;
    text-shadow: 0 0 5px #714122;
}

#terminal p.program {
    color: #ECBEA1;
    text-shadow: 0 0 5px #644b3b;
}

#terminal p.error {
    color: #B57850;
    text-shadow: 0 0 5px #714122;
}

#call_terminal_main {
    z-index: 100;
    position: fixed;
    bottom: 5px;
    right: 5px;
}

#call_terminal_main a {
    text-decoration: none;
    color: #a5e5d4;
    transition: all .5s ease-in-out;
}
#call_terminal_main a:hover {
    text-decoration: underline;
    color: #d6fff4;
}
#terminal_holder {
    width: 100%;
    height: 100%;
    margin-top: -40px;
    padding-top: 40px;
}
