/*
Theme Name: My GeneratePress Child
Theme URI: https://oaklandcatsitter.com/
Description: A child theme for GeneratePress.
Author: Patrick
Author URI: https://oaklandcatsitter.com/
Template: generatepress
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-generatepress-child
*/

/* SVG animation keyframes */
@keyframes rotateAroundCenter {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Animate the hearts and text groups */
.OCS-SVG #left-heart,
#right-heart,
#cat-sitter,
#OAKLAND {
    transform-origin: 250px 250px; /* Center of the SVG viewBox */
    animation: rotateAroundCenter 2s linear 1 forwards;
}

/* max-width for containers */

.maxed-1000 { max-width: 950px; }