*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;




}


html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;


}


body {
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;


}


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


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


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


a {
    text-decoration: none;
    color: inherit;
}


ul,
ol {
    list-style: none;
}


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


table {
    border-collapse: collapse;
    border-spacing: 0;
}


::selection {
    background: var(--primary);
    color: var(--white);
}