* {
    box-sizing: border-box;
}

html {
    background: #0f2027;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--color-dark);
}

h1 {
    color: #444476;
}

h2 {
    color: #e38136;
}

body {
    background: transparent;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(
        118deg,
        #0f2027 0%,
        #182e35 22%,
        #203a43 48%,
        #2c5364 72%,
        #203a43 100%
    );
    background-size: 260% 260%;
    animation: site-bg-drift 5s ease-in-out infinite alternate;
}

@keyframes site-bg-drift {
    0% {
        background-position: 8% 35%;
    }
    100% {
        background-position: 92% 65%;
    }
}

@media (prefers-reduced-motion: reduce) {
    body::before {
        animation: none;
        background-size: 100% 100%;
        background-position: 50% 50%;
    }
}

a {
    text-decoration: none;
    color: inherit;
}
