/*
Theme Name: BlogTheme
Author: HarmonS
Description: A child theme for a simple wordpress blog site.
Version: 1.0
Template: twentytwentyfive

This is the child theme for Twenty Twenty-Five theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/
/* Styles for ALL screen sizes */
body {
    background: linear-gradient(-45deg, #4CAF50, #8BC34A, #00BCD4, #009688);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
}

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

/* Styles that only apply when screen width is 954px or less */
@media only screen and (max-width: 954px) {
    .has-global-padding {
        padding-right: 10px;
        padding-left: 10px;
    }
    /* If you wanted a *different* background for small screens, you'd put it here */
}