/* Minimal reset for consistent rendering across shared-hosting browser targets. */
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

html:focus-within {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

img,
picture,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

button,
select {
    text-transform: none;
}

button,
[type='button'],
[type='submit'] {
    appearance: none;
    background: none;
    border: none;
}

ul,
ol {
    list-style-position: inside;
}

a {
    color: inherit;
}

[hidden] {
    display: none !important;
}
