*, *::before, *::after {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

html {
 scroll-behavior: smooth;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}

body {
 font-family: var(--font_body);
 color: var(--color_gray_800);
 background: var(--color_white);
 line-height: 1.6;
 overflow-x: hidden;
}

a {
 text-decoration: none;
 color: inherit;
}

button {
 border: none;
 background: none;
 cursor: pointer;
 font-family: inherit;
}