@font-face {
    font-family: "frankruhlibre";
    src: url("./font.woff2") format("woff2");
}

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

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: "frankruhlibre", system-ui, -apple-system, sans-serif;
}

img,
picture,
video,
canvas,
svg {
    display: block;
}

ul[class],
ol[class] {
    list-style: none;
}

a {
    text-decoration-skip-ink: auto;
    color: inherit;
}

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

:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 5px;
}

@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;
    }
}