*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-sans);
    font-size: var(--text-md);
    line-height: var(--leading-normal);
    color: var(--color-text);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.94), transparent 28rem),
        radial-gradient(circle at 85% 20%, rgba(228, 214, 197, 0.22), transparent 22rem),
        radial-gradient(circle at bottom right, rgba(214, 202, 188, 0.2), transparent 28rem),
        linear-gradient(180deg, #fbfaf8 0%, var(--color-canvas) 100%);
}

.app-body {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 26rem),
        radial-gradient(circle at 88% 12%, rgba(205, 217, 213, 0.58), transparent 24rem),
        radial-gradient(circle at bottom right, rgba(184, 198, 193, 0.3), transparent 26rem),
        linear-gradient(180deg, #f6f9f8 0%, #eef2f1 55%, #e8efec 100%);
    color: #1f2a28;
}

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

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }
}
