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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.72) 0%, rgba(246, 241, 232, 0.9) 52%, var(--bg-global) 100%);
    line-height: 1.6;
}

[data-theme="dark"] body {
    background: radial-gradient(circle at 18% 12%, rgba(26, 30, 36, 0.9) 0%, rgba(17, 20, 23, 0.94) 52%, var(--bg-global) 100%);
}

main {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 var(--space-3);
    font-family: var(--font-serif);
    line-height: 1.25;
    color: var(--text-primary);
}

p {
    margin: 0 0 var(--space-3);
    color: var(--text-secondary);
}

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

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

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

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