@charset "UTF-8";

*,
*::before,
*::after {
    box-sizing: inherit;
    padding: 0;
    margin: 0;
    text-decoration: none;
}

::selection {
    background-color: var(--accent);
    color: invert($color: #000000);
}

html {
    font-size: 62.5%;
    line-height: 1.15;
    //scroll-behavior: smooth;
}

body,
body * + * {
    box-sizing: border-box;
}

img,
video,
svg {
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

summary {
    &::-webkit-details-marker {
        display: none;
    }

    list-style: none;
}
