/*
Theme Name: barbarasolla
Description: Child theme for OceanWP theme
Author: Weblord
Author URI: http://www.weblord.it/
Template: oceanwp
Version: 1.0.0
Text Domain: oceanwp
*/


#site-navigation .dropdown-menu ul li.menu-item {
    min-width: max-content;
}

/* Testo colorato seduta gratis */
.animate-charcter
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #ffffff 0%,
    #afd0ee 15%,
    #7fb3e0 25%,
    #639ccf 50%,
    #7fb3e0 75%,
	#afd0ee 85%,
    #ffffff 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 4s linear infinite;
  display: inline-block;
      font-size: 190px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

/* Testo colorato NEON seduta gratis */
.neon-text {
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #00ff24, 0 0 10px #00ff24, 0 0 20px #00ff24, 0 0 40px #00ff24, 0 0 80px #00ff24;
    }
    100% {
        text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff, 0 0 160px #00d4ff;
    }
}