/* fira-mono-regular - latin */
@font-face {
  font-family: 'Fira Mono';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/fira-mono-v14-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/fira-mono-v14-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/fira-mono-v14-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/fira-mono-v14-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/fira-mono-v14-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/fira-mono-v14-latin-regular.svg#FiraMono') format('svg'); /* Legacy iOS */
}
/* fira-mono-700 - latin */
@font-face {
  font-family: 'Fira Mono';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/fira-mono-v14-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/fira-mono-v14-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/fira-mono-v14-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/fira-mono-v14-latin-700.woff') format('woff'), /* Modern Browsers */
       url('fonts/fira-mono-v14-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/fira-mono-v14-latin-700.svg#FiraMono') format('svg'); /* Legacy iOS */
}



body{
  font-family: 'Fira Mono', monospace;
  background: #000;
}


a,a:hover{
  color: #fff;
}



.bg-image{
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}
.mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-attachment: fixed;
}

/* DEMO-SPECIFIC STYLES */
.typewriter{
  color: #fff;
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .2em solid orange; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  animation:
    blink-caret .6s step-end infinite;
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #fff }
}
