@import url("https://fonts.googleapis.com/css?family=Playfair+Display&display=swap");
body {
  width: 900px;
  height: 100vh;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #AFA0F6;
  font-family: Playfair-Display;
}

.ULTRARUNNING {
  color: white;
  position: absolute;
  font-size: 3em;
  font-family: "Lato";
  text-transform: uppercase;
  display: flex;
  text-align: center;
  z-index: 3;
  bottom: 450px;
  left: 20px;
  transform: scale(0.75);
}
.ULTRARUNNING span {
  background: #34495e;
  padding: 0 20px;
  line-height: 100px;
  animation: bulge 2s infinite;
}

@keyframes bulge {
  50% {
    transform: translateY(-35px);
    box-shadow: 0 20px 0 #eee;
  }
}