﻿:root {
    color-scheme: dark;
}

body {
    font-family: "Inter", "Segoe UI", sans-serif;
    background-color: #020c1b;
    line-height: 1.6;
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradient-flow 18s ease infinite;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
