@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: '+';
    float: right;
    font-weight: 900;
}

details[open] summary::after {
    content: '−';
}

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