* {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

html {
  height: 100%;
}

body {
  font-family: "Lato", sans-serif;
  color: #888;
  margin: 0;
}

#main {
  display: table;
  width: 100%;
  height: 100vh;
  text-align: center;
}

.fof {
  display: table-cell;
  vertical-align: middle;
}

.fof h1 {
  font-size: 50px;
  display: inline-block;
  padding-right: 12px;
  -webkit-animation: type 0.5s alternate infinite;
          animation: type 0.5s alternate infinite;
}

@-webkit-keyframes type {
  from {
    -webkit-box-shadow: inset -3px 0 0 #888;
            box-shadow: inset -3px 0 0 #888;
  }
  to {
    -webkit-box-shadow: inset -3px 0 0 transparent;
            box-shadow: inset -3px 0 0 transparent;
  }
}

@keyframes type {
  from {
    -webkit-box-shadow: inset -3px 0 0 #888;
            box-shadow: inset -3px 0 0 #888;
  }
  to {
    -webkit-box-shadow: inset -3px 0 0 transparent;
            box-shadow: inset -3px 0 0 transparent;
  }
}
