html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

body {
    background-color: rgb(32,31,36);
    font-family: system-ui, sans-serif;
    display: flex;
    flex-direction: column;

    min-height: 100vh;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgb(18,18,20);
}

::-webkit-scrollbar-thumb {
    background: rgb(70,70,75);
    border-radius: 10px;
    border: 2px solid rgb(18,18,20);
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(100,100,105);
}


* {
    scrollbar-width: thin;
    scrollbar-color: rgb(70,70,75) rgb(18,18,20);
}


.site-main {
    flex: 1;
    padding-top: 35px;
    padding-bottom: 30px;
}


.site-main-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.site-main-title {
    font-size: 28px;
    color: white;
    margin-bottom: 20px;

}

.site-main-text {
    color: rgb(200,200,205);
    font-size: 16px;
    line-height: 1.6;
}

.trst{
  transition: opacity .12s ease;
}
.trst.lang-switch{
  opacity:0;
}