  /* pulse animation for the button */
  @keyframes pulseGlow {
    0%, 100% {
      transform: scale(1);
      box-shadow: 0 0 0 rgba(13, 202, 240, 0); /* info color */
    }
    50% {
      transform: scale(1.01);
      box-shadow: 0 0 15px rgba(13, 202, 240, 0.3);
    }
  }

  .pulse-link {
    animation: pulseGlow 2s infinite;
  }

p {

    font-size: 1.3rem;;
}

.richtext figure {
    text-align: center;
}

.richtext img {
    display: inline-block;
    margin: 0 auto;
}