@import url("https://fonts.googleapis.com/css2?family=Exo&display=swap");

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    scroll-padding-top: 1rem;
}

body {
    min-height: 100svh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Exo, Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4,
button,
input,
label {
    line-height: 1.1;
}

h1,
h2,
h3,
h4 {
    text-wrap: balance;
}

html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

ul[role="list"],
ol[role="list"] {
    list-style: none;
}

img,
picture,
video,
canvas,
svg {
    max-width: 100%;
    display: block;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}

input[type="radio"] {
    inline-size: 0 !important;
    block-size: 0 !important;
}

::-webkit-scrollbar {
    inline-size: 5px;
    block-size: 7px;
}

::-webkit-scrollbar-thumb {
    background: rgb(0, 153, 223);
    border-radius: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

::-webkit-scrollbar-corner {
    display: none;
}

a {
    -webkit-tap-highlight-color: transparent;
}

a:focus, a:active {
    background: none;
}

@media screen and (min-width: 992px) {
    * {
        scroll-padding-top: 4rem;
    }
}