body {
  background: #34495e;
  color: #ecf0f1;
  margin: 0;
  padding: 0;
}

.banner {
  display: block;
  min-height: 200px;
  width: 100%;
  position: relative;
}
.typed_wrap {
  display: block;
  width: 13000 px;
  height: auto;
  padding: 30px;
  
  /*centers it in the .banner*/
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

.typed_wrap h1 {
  display: inline;
}

/*Add custom cursor so it auto inherits font styles*/
.typed::after {
  content: '|';
  display: inline;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}

/*Removes cursor that comes with typed.js*/
.typed-cursor{
   opacity: 0;
  display: none;
}
/*Custom cursor animation*/
@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

.btns {
  display: block;
  width: 400px;
  margin: 0;
  padding: 30px 0 0 30px;
}
.btns a {
  display: inline-block;
  margin-left: 5px;
}
.btns a:first-child{margin-left:0}
.btn {
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ecf0f1;
  text-decoration: none;
}
a .btn {
  cursor: pointer;
  border: 1.5px solid #ecf0f1;
  border-radius: 5px;
  display: inline-block;
  padding: 10px;
  list-style-type: none;
  transition: all .3s;
}

.btn:hover {
  background: #ecf0f1;
  color: #34495e;
}
