html, body, 

.container {
    width:99%
	height: 99%;
	background-image: url(../images/peer.jpg);
	background-size: auto;
	font-family: 'Gugi', cursive;
	color: #aaaaaa;
	font-size: 28px;
	background-repeat: no-repeat;
}

.slide-right {
  width: 100%;
  overflow: hidden;
  margin-left: 45%;
  max-width: 20%;
}

.slide-right h2 {
  animation: 5s slide-right 0.5s forwards;
  transform:translateX(-100%);
}

@keyframes slide-right {
  to {
    transform:translateX(0);
  }
}
	
.typewriter h3 {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .15em 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 */
  letter-spacing: .15em; /* Adjust as needed */
  animation:
    typing 12s steps(80, end),
    blink-caret .75s step-end infinite;
  max-width: 50%;
  background-color: none;
  color: eeeeee;
  font-size: 20px;
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

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

.copyright {
	position: absolute;
	font-size: 12px;
	color: eeeeee;
	border: 1px solid;
}
