html {
  height: 100%;
}

body {
  min-height: 100%;
  height: auto;
  font-family:"Open Sans", sans-serif;;
  font-size: 3rem;
  color: grey;
  background: #f1f1f1;
  display: flex;
}
body .name {
  display: flex;
  margin: auto;
  padding: 0 1rem 1rem;
  position: relative;
}
body .name:before {
  content: '';
  width: 100%;
  background: grey;
  opacity: 0.3;
  bottom: 0;
  height: 1px;
  left: 0;
  position: absolute;
}
body .name .letter {
  display: inline-block;
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
