*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
textarea,
select {
    font-family: inherit;
    font-size: 100%;
    border: none;
    background: none;
}

button {
    cursor: pointer;
}

[hidden] {
    display: none;
}

html {
    scroll-behavior: smooth;
}

:focus-visible {
    outline: 2px solid #2A5298;
    outline-offset: 2px;
}