/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

.custom-banner a {
  color: white;
  font-weight: bold;
  text-decoration: underline;
}

.custom-banner {
  background: #fe5f4c;
  padding: 20px;
  text-align: center;
  color: white;
}

.custom-banner>div {
  animation: pulse 3s ease 0s infinite normal forwards;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    transform-origin: center;
  }

  50% {
    transform: scale(1.07);
    transform-origin: center;
  }

  100% {
    transform: scale(1);
    transform-origin: center;
  }
}