#typing_container h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.7em;
}
.expandable {
  transform: translateY(-100%);
  animation: slideDown ease 0.5s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
 }
 @keyframes slideDown{
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
#typing_text {
	display: inline-block;
	vertical-align: middle;
	color: white;
	letter-spacing: 2px;
  animation-delay: 5s;
  -webkit-animation-delay:15s;
}
#cursor {
	display: inline-block;
	vertical-align: middle;
	width: 3px;
	height: 50px;
  margin-left: 10px;
	background-color: white;
	animation: blink .75s step-end infinite;
}
@keyframes blink {
	from, to { 
		background-color: transparent 
	}
	50% { 
		background-color: white; 
	}
}
