@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro);

html{
  min-height: 100%;
  overflow: hidden;
}
body{
	background-image: url('/assets/img/cat.jpg');
	background-size: cover;
	color: rgba(30,30,30,.75);
	background-color: rgb(240,240,240);
	font-family: 'Anonymous Pro', monospace;  
}

.page-link {
	font-size: 14pt;
	font-weight: bold;
}

.css-typing {
	margin-top: 40px;
	margin-left: 60px;
}

.css-typing p {
	border-right: .15em solid orange;
	white-space: nowrap;
	overflow: hidden;
	margin-top: 6px;
	margin-bottom: 12px;
}

.css-typing p:nth-child(1) {
	font-size: 48px;
	width: 11.8em;
	animation: type1 2s steps(40, end);
	animation-fill-mode: forwards;
	-webkit-animation: type1 2s steps(40, end);
	-webkit-animation-fill-mode: forwards;
}

.css-typing p:nth-child(2) {
	font-size: 32px;
	width: 10.8em;
	opacity: 0;
	animation: type2 2s steps(40, end);
	animation-delay: 2s;
	animation-fill-mode: forwards;
	-webkit-animation: type2 2s steps(40, end);
	-webkit-animation-delay: 2s;
	-webkit-animation-fill-mode: forwards;
}

.css-typing p:nth-child(3) {
	font-size: 32px;
	width: 12.3em;
	opacity: 0;
	animation: type3 2s steps(40, end);
	animation-delay: 4s;
	animation-fill-mode: forwards;
	-webkit-animation: type3 2s steps(40, end);
	-webkit-animation-delay: 4s;
	-webkit-animation-fill-mode: forwards;
}

.css-typing p:nth-child(4) {
	font-size: 32px;
	width: 13em;
	opacity: 0;
	animation: type4 2s steps(40, end), blink .5s step-end infinite alternate;
	animation-delay: 6s;
	animation-fill-mode: forwards;
	-webkit-animation: type4 2s steps(40, end), blink .5s step-end infinite alternate;
	-webkit-animation-delay: 6s;
	-webkit-animation-fill-mode: forwards;
}

@keyframes type1 {
  0% {
    width: 0;
  }
  99.9% {
    border-right: .15em solid orange;
  }
  100% {
    border: none;
  }
}

@-webkit-keyframes type1 {
  0% {
    width: 0;
  }
  99.9% {
    border-right: .15em solid orange;
  }
  100% {
    border: none;
  }
}

@keyframes type2 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  99.9% {
    border-right: .15em solid orange;
  }
  100% {
    opacity: 1;
    border: none;
  }
}

@-webkit-keyframes type2 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  99.9% {
    border-right: .15em solid orange;
  }
  100% {
    opacity: 1;
    border: none;
  }
}

@keyframes type3 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  99.9% {
    border-right: .15em solid orange;
  }
  100% {
    opacity: 1;
    border: none;
  }
}

@-webkit-keyframes type3 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  99.9% {
    border-right: .15em solid orange;
  }
  100% {
    opacity: 1;
    border: none;
  }
}

@keyframes type4 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes type4 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}
@-webkit-keyframes blink {
  50% {
    border-color: tranparent;
  }
}