/* ==========================================================
   one2zero UI
   Reset Stylesheet
   ========================================================== */
/* Box model */
*,
*::before,
*::after {
    box-sizing: border-box;
}
/* Remove default margins */
* {
    margin: 0;
}
/* Base document */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}
/* Typography */
body,
input,
button,
textarea,
select {
    font: inherit;
}
/* Images */
img,
picture,
svg,
canvas {
    display: block;
    max-width: 100%;
}
/* Media */
video {
    display: block;
    max-width: 100%;
    height: auto;
}
/* Forms */
input,
button,
textarea,
select {
    border: none;
    background: none;
    outline: none;
}
button {
    cursor: pointer;
}
textarea {
    resize: vertical;
}
/* Lists */
ul,
ol {
    list-style: none;
}
/* Links */
a {
    color: inherit;
    text-decoration: none;
}
/* Tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* Hidden */
[hidden] {
    display: none !important;
}
/* Focus */
:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}
/* Selection */
::selection {
    background: rgba(37,99,235,.18);
}
/* Disable animations for accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
