/* DROP CAP */
.letter {
  color: #000;
  float: left;
  font-family: "Lato", sans-serif;
  font-size: 85px;
  font-weight: 700;
  line-height: 60px;
  padding-top: 4px;
  padding-right: 8px;
  padding-left: 0px;
}

/* BOUNCING BUTTON */
.real {
  animation: MoveUpDown 3s linear infinite;
  position: top;
  left: 0;
  bottom: 0;
}

@keyframes MoveUpDown {
  0%, 100% {
    bottom: 0;
  }
  50% {
    bottom: 20px;
  }
}