/*
Theme Name: SmartMag Child
Theme URI: https://aibyexpert.com
Description: My custom child theme based on generatepress.
Author: Vishal Paswan
Author URI: https://aibyexpert.com
Template: smart-mag
Version: 1.0
*/

/* Custom styles go below this line */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
.logo-link.ts-logo.text-logo {
	font-family: 'Poppins', sans-serif;
  background: linear-gradient(
    270deg,
		#A90000,
		#4600A9,
		#00A267,
		#FFD000
  );
  background-size: 800% 800%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s ease infinite;
  font-weight: bold;
  display: inline-block;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

