@font-face {
    font-family: 'Lab Mono Web';
    src: url( 'labmono-regular-web.eot' );
    src: url( 'labmono-regular-web.eot?#iefix' ) format( 'embedded-opentype' ),
         url( 'labmono-regular-web.woff2' ) format( 'woff2' ),
         url( 'labmono-regular-web.woff' ) format( 'woff' ),
         url( 'labmono-regular-web.ttf' ) format( 'truetype' );
    font-weight: normal;
    font-style: normal;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: hsl(0, 0%, 30%);
  background-color: hsl(0, 0%, 90%);
  overflow: hidden !important;
}

.container {
  display: block;
  margin: 0;
  padding: 2vw;
}

p {
  margin: 0;
  padding: 0;
  font-family: 'Lab Mono Web', monospace;
  font-size: 1vw;
  line-height: 1.25vw;
  font-style: normal;
  font-weight: normal;
  font-variant-ligatures: none;
}

@media screen and (max-width: 1024px) {

  p {
  margin: 0;
  padding: 0;
  font-family: 'Lab Mono Web', monospace;
  font-size: 3vw;
  line-height: 3.75vw;
  font-style: normal;
  font-weight: normal;
  font-variant-ligatures: none;
  }

}

a:link, a:visited {
  color: hsl(0, 50%, 80%);
}

a:hover {
  background: hsla(0, 0%, 100%, .2);
}

.magic{
  opacity: 0;
  -webkit-transform: translateX(-100%);
			transform: translateX(-100%);
    will-change: transform, opacity;
    mix-blend-mode: overlay;
  filter: blur(10px);
  animation: magic-move ease-out 2.6s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  -webkit-animation: magic-move ease-out 2.6s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: magic-move ease-out 2.6s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -o-animation: magic-move ease-out 2.6s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -ms-animation: magic-move ease-out 2.6s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
}

@keyframes magic-move{
  0% {
    opacity:0;
    transform:  scaleX(0) scaleY(0) ;
  }
  5% {
    opacity:1;
    transform:  scaleX(1.00) scaleY(1.00) ;
  }
  81% {
    opacity:1;
    transform:  scaleX(9.80) scaleY(9.80) ;
  }
  100% {
    opacity:0;
    transform:  scaleX(10.00) scaleY(10.00) ;
  }
}

@-moz-keyframes magic-move{
  0% {
    opacity:0;
    transform:  scaleX(0) scaleY(0) ;
  }
  5% {
    opacity:1;
    transform:  scaleX(1.00) scaleY(1.00) ;
  }
  81% {
    opacity:1;
    -moz-transform:  scaleX(9.80) scaleY(9.80) ;
  }
  100% {
    opacity:0;
    -moz-transform:  scaleX(10.00) scaleY(10.00) ;
  }
}

@-webkit-keyframes magic-move {
  0% {
    opacity:0;
    transform:  scaleX(0) scaleY(0) ;
  }
  5% {
    opacity:1;
    transform:  scaleX(1.00) scaleY(1.00) ;
  }
  81% {
    opacity:1;
    -webkit-transform:  scaleX(9.80) scaleY(9.80) ;
  }
  100% {
    opacity:0;
    -webkit-transform:  scaleX(10.00) scaleY(10.00) ;
  }
}

@-o-keyframes magic-move {
  0% {
    opacity:0;
    transform:  scaleX(0) scaleY(0) ;
  }
  5% {
    opacity:1;
    transform:  scaleX(1.00) scaleY(1.00) ;
  }
  81% {
    opacity:1;
    -o-transform:  scaleX(9.80) scaleY(9.80) ;
  }
  100% {
    opacity:0;
    -o-transform:  scaleX(10.00) scaleY(10.00) ;
  }
}

@-ms-keyframes magic-move {
  0% {
    opacity:0;
    transform:  scaleX(0) scaleY(0) ;
  }
  5% {
    opacity:1;
    transform:  scaleX(1.00) scaleY(1.00) ;
  }
  81% {
    opacity:1;
    -ms-transform:  scaleX(9.80) scaleY(9.80) ;
  }
  100% {
    opacity:0;
    -ms-transform:  scaleX(10.00) scaleY(10.00) ;
  }
}

/*-- Firefox and Safari Hacks --*/
@-moz-document url-prefix() { 
 .magic{
    mix-blend-mode: multiply !important;
  }
}

_::-webkit-full-page-media, _:future, :root .magic {

    mix-blend-mode: multiply !important;

}