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

* {
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 24px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
html, body {
    height: 100%;
    margin: 0;
}

img, picture, video, canvas {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

h1, h2, h3, h4 {
    font-family: 'Roboto', sans-serif;
    text-wrap: balance;
}

ul, ol, li, dl, dt, dd {
    margin: 0;
    padding: 0;
}
ul, ol {
    list-style: none;
}

p {
    text-wrap: pretty;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

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

button {
    cursor: pointer;
    background: none;
    border: none;
}

ul[role="list"],
ol[role="list"] {
    list-style: none;
    padding: 0;
}

#root, #__next {
    isolation: isolate;
}

a {
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    transition: opacity 0.5s ease;
}
a:hover {
    opacity: 0.8;
}

input, textarea, select {
    font-family: inherit;
    color: var(--gray-l16-color);
    font-size: 13px;
    line-height: 13px;
}