/*!
Theme Name: Kava Child
Theme URI:
Author: Zemez
Author URI:
Description: Kava child theme.
Template: kava
Version: 1.0.1
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kava-child
*/

/* Animație gradient */
.animatiegradient {
  width: 700px;
  height: 700px;
  filter: blur(70px);
  background-image: linear-gradient(#4ddc9e, #5b37eb, #f1307e);
  animation: rotate 5s linear infinite;
  border-radius: 70% 60% 60% 70%/70% 40% 60% 60%;
  animation-delay: 0s;
}

/* Keyframes pentru rotație */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
