/*
Theme Name: Snow Predictor
Theme URI: https://snowdayspredictorr.com
Author: Anosh Rameez
Author URI: https://www.linkedin.com/in/anosh-rameez
Description: Professional Snow Day Predictor WordPress theme. Built with Tailwind CSS. Accurate school closure predictions for every US and Canadian city.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: snow-predictor
Tags: snow, weather, education, calculator, predictor, tailwind
*/
body{
    scroll-behavior: smooth;
}
.snow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: 
    radial-gradient(4px 4px at 100px 50px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(6px 6px at 200px 150px, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(3px 3px at 300px 250px, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(5px 5px at 400px 350px, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(4px 4px at 500px 100px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(6px 6px at 600px 200px, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(3px 3px at 700px 300px, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(5px 5px at 800px 400px, rgba(255, 255, 255, 0.7), transparent);
    background-size: 1000px 1000px;
    animation: snow 10s linear infinite;
}
@keyframes snow {
    0% { background-position: 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px; }
    100% { background-position: 500px 1000px, 400px 1000px, 300px 1000px, 200px 1000px, 500px 1000px, 400px 1000px, 300px 1000px, 200px 1000px; }
}