/*
Vonluqi's CSS Reset
v2.0.0 | 2025-07-28
License: none (public domain)
*/

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
    line-height: 1;
    list-style: none;
    quotes: none;
    border-collapse: collapse;
    border-spacing: 0;
    text-decoration: none;
    border: none;
}

:focus
{
    outline: none;
}

::before, ::after
{
    content: '';
    content: none;
}

html:focus-within
{
    scroll-behavior: smooth;
}

body
{
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg
{
    display: block;
    max-width: 100%;
}

input, button, textarea, select
{
    font: inherit;
}

a
{
    color: inherit;
}

:focus-visible
{
    outline: 2px solid dodgerblue;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce)
{
    html:focus-within
    {
        scroll-behavior: auto;
    }

    *, *::before, *::after
    {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}