/* -------------    Fonts  ---------------- */

@import url('https://fonts.googleapis.com/css?family=Anonymous+Pro|Cutive+Mono&display=swap');
@import url('https://fonts.googleapis.com/css?family=Zilla+Slab|Zilla+Slab+Highlight');

/*----- Reset ------*/

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

img {
    display: block;
    max-width: 100%;
}

/*----- Basic ------*/

html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 15px 20px;
  min-height: 99%;
  width: 100%;
  color: #212121;
  background: #fff;
  font-family: 'Cutive Mono', monospace;
  line-height: 1.1;
  overflow-x: hidden;
}
::selection {
  color: #211830;
  background-color: #31C1E1;
}
::-moz-selection {
  color: #211830;
  background-color: #31C1E1;
}
textarea {
  left: -1000px;
  position: absolute;
}
b {
  font-weight: bold;
  text-decoration: underline;
}
h1 {
  font-size: 2em;
}
h2 {
  font-size: 1.5em;
}

.upper-space-big {
  margin-top: 4rem;
}
.underline {
  border-bottom: 0.4rem solid #54caf1;
}
.mainCont {
  position: relative;
  z-index: 0;
  padding: 4rem 11rem;
  margin: 0 auto;
  white-space: normal; 
  word-wrap: break-word;  
  transition: all 500ms ease-in-out;
}
#typerCont {
  height: 6rem;
}

/*----- Typer ------*/

.typer {
  word-break: break-word;  
  overflow-wrap: break-word; 
  white-space: normal;
  hyphens: auto;
}

/*----- CursorStart ------*/

.cursor {
  font-size: 12px;
  color: #31C1E1;
  background-color: #31C1E1;
  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: #31C1E1;
}
#liner {
  line-height: 1.3em;
  margin-top: -2px;
  animation: show 0.5s ease forwards;
  animation-delay: 1.2s;
  opacity: 0;
}
#liner::before {
  color: #31C1E1;
  content: "visitor@hickx.com:~$";
}
#liner.password::before {
  content: "Password:";
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*----- Terminal ------*/

#terminal {
  padding-top: 20px;
}
#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: #31C1E1;
}
.error {
  color: #B89076;
}
.white {
  color: #fff;
}
.inherit,
a {
  color: #9C8394;
}
a {
  text-decoration: inherit;
}
a:hover {
  background: #31C1E1;
  color: #211830;
}
a:focus {
  outline: 0;
}

/* -------------    Media Queires   ---------------- */
@media (max-width: 700px) {
  .mainCont {
    padding: 2rem 4rem;
  }
  .underline {
    border-bottom: 0.2rem solid #54caf1;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 1rem;
  }
  .mainCont {
    padding: 0rem 1rem;
  }
  .underline {
    border-bottom: 0.2rem solid #54caf1;
  }
  #liner {
    font-size: 1em;
    margin-top: 1rem;
  }
  .cursor {
  font-size: 12px;
  }
}