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

html {
    scroll-behavior: smooth;
}

body {

     font-family:var(--kk-font);

    background:var(--kk-bg);

    color:var(--kk-text);

    line-height:1.6;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

    text-rendering:optimizeLegibility;

img {
    max-width: 100%;
    display: block;
}

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

button {

    border: none;

    cursor: pointer;

    background: none;

    font: inherit;
}

ul {
    list-style: none;
}