@import url("https://fonts.googleapis.com/css?family=Quicksand:300,400,500");

:root {
  --blink-color : #00E567
}

body {
  background-color: white;
  font-family: "Quicksand", sans-serif;
}

h1 {
  padding: 50px 0;
  margin: 0;
  color: #bdc3c7;
  text-align: center;
  font-size: 60px;
  letter-spacing: -2px;
}

h1:after {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background-color: #1DC8FE;
  border-radius: 100%;
  margin-left: 5px;
}

#terminal {
  min-height: 300px;
  max-width: 75%;
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 3px;
  background: #1D1F21;
  box-shadow: 0px 13px 17px -6px rgba(0, 0, 0, 0.38);
}

#terminal:hover {
  transform: translate3d(0,-10px,0);
  box-shadow: 0px 38px 90px -38px rgba(0, 0, 0, 0.45);
}

.terminal-window {
  text-align: left;
  border-radius: 4px;
  font-size: 13px;
}

.terminal-bar {
  background: #252525;
  height: 35px;
  line-height: 36px;
  padding-left: 4px;
  padding-top: 1px;
}

.terminal-bar .circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid
}

.terminal-bar .circle.circle-red {
  background: #FF0040;
  border-color: #d73031;
  margin: 0 2px;
}

.terminal-bar .circle.circle-orange {
  background: #FFCF00;
  border-color: #d7911e;
  margin: 0 2px;
}

.terminal-bar .circle.circle-green {
  background: #00E567;
  border-color: #23a124;
  margin: 0 2px;
}

.terminal-body {
  padding: 8px;
  color: #fff;
  line-height: 25px;
  font-family: monospace, Quicksand, sans-serif;
}

.command {
  color: #fff;
  font-family: "VT-100", monospace
  font-size: 1em;
}

.cursor {
  display: inline-block;
  height: 1.1em;
  margin-top: -4px;
  width: 0.5em;
  vertical-align: middle;
  -webkit-animation: 1s blink step-end infinite;
  -moz-animation: 1s blink step-end infinite;
  -ms-animation: 1s blink step-end infinite;
  -o-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
}

@keyframes blink {
  from,
  to {
    background: 0 0;
  }
  50% {
    background: var(--blink-color);
  }
}

@-moz-keyframes blink {
  from,
  to {
    background: 0 0;
  }
  50% {
    background: var(--blink-color);
  }
}

@-webkit-keyframes blink {
  from,
  to {
    background: 0 0;
  }
  50% {
    background: var(--blink-color);
  }
}

@-ms-keyframes blink {
  from,
  to {
    background: 0 0;
  }
  50% {
    background: var(--blink-color);
  }
}

@-o-keyframes blink {
  from,
  to {
    background: 0 0;
  }
  50% {
    background: var(--blink-color);
  }
}


footer {
  padding: 50px;
}

footer a {
  color: #1DC8FE;
}

footer a:hover {
  text-decoration: none;
  color: #1DC8FE;
}
