/* 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;
  }
}

/* Font Size for Form Text */
p, .content-text pre {
    color: var(--text);
    background-image: none;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0px;
    line-height: 25px;
    text-align: left;
    text-decoration: none;
    text-transform: none;
}

body a {
    color: #09f6ff;
}