html {
    scroll-behavior: smooth;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #FFFFFF;
}

body * {
    box-sizing: border-box;
}

.container__global {
    overflow: hidden;
}

body{
    background: #171430;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #171430;
}

::-webkit-scrollbar
{
    width: 5px;
    height: 5px;
    background-color: #171430;
}

::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #555;
}

body.lock{
    overflow-y: hidden;
}

* img {
    pointer-events: none;
    user-select: none;
}

*,*::before, *::after{
    box-sizing: inherit;
}


a {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
}

ul,
li{
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6{
    margin: 0;
    font-size: inherit;
}

.container {
    max-width: 1280px;
    padding: 0 15px;
    margin: 0 auto;
}
