.splash {
  position: absolute;
    left: 220px;
    top: 10px;
    z-index: 167;
  color: rgba(196, 125, 58, 0.393);
  /* color: rgba(201, 140, 78, 0.511); */
  /* font-family: 'Cinzel', cursive; */
  /* font-family: Georgia, 'Times New Roman', Times, serif; */
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 1em;
  font-weight: bold;
  text-shadow: 3px 1px 2px rgba(55, 30, 142, 0.136), 0 0 5px rgb(255, 255, 255), 0 0 2px rgb(186, 227, 229);
  /* transform: rotate(-10deg); */
  animation: splashAnim 2.7s infinite ease-in-out;
}
/* @keyframes splashAnim {
  0% {transform: rotate(10deg) scale(1);}
  50% {transform: rotate(10deg) scale(1.2);}
  100% {transform: rotate(10deg) scale(1);}
} */
@keyframes splashAnim {
  0% {transform:scale(1);}
  50% {transform:scale(1.2);}
  100% {transform:scale(1);}
}
