html {
    scroll-behavior: smooth;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
}

body * {
    box-sizing: border-box;
}

.container__global {
    overflow: hidden;
}

body{
    background: #101010;
    -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;
}

.not-found {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* занимаем всю высоту экрана */
    text-align: center;
    flex-direction: column;
}

.not-found__content {
    max-width: 500px;
    padding: 20px;
}

.not-found__title {
    font-size: 28px;
    font-weight: bold;
    margin: 20px 0;
    color: #333;
}

.buttons__02 {
    display: inline-block;
    padding: 12px 24px;
    background: #6a4ff7;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.buttons__02:hover {
    background: #5436d6;
}