/* Custom Animations */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    animation: marquee 20s linear infinite;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Selection Color */
::selection {
    background-color: #059669;
    color: white;
}

/* Base styles overrides */
body {
    background-image: radial-gradient(#064e3b 0.5px, transparent 0.5px), radial-gradient(#064e3b 0.5px, #FDFBF7 0.5px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    background-attachment: fixed;
    background-opacity: 0.03;
}
