:root {
    --font-family: "Gilroy", sans-serif;
    --second-family: "Neue Machina", sans-serif;
    --third-family: "HelveticaNeueCyr", sans-serif;
    --font3: "Akrobat", sans-serif;
    --font4: "Fragment Mono", sans-serif;

    --section-width: 1700px;
    --section-height: 990px;
}

:root {
    scroll-behavior: smooth !important;
}

*,
html {
    scroll-behavior: smooth !important;
}

html:focus-within {
  scroll-behavior: smooth !important;
}

html,
body {
    margin: 0px;

    background: #050505;
    color: #fff;
}

.onlyMobile {
    @media (min-width: 1240px) {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
}

.onlyPC {
    @media (max-width: 1239px) {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
}

@media (min-width: 1240px) {

    footer,
    section {
        width: 1700px;

        justify-self: center;

        border: 1px solid #ffffff00;

        scroll-margin-top: 2px;
    }

    section {
        min-height: 990px;
    }

    header {
        width: 1700px;
    }
}

@media (max-width: 1239px) {

    footer,
    section {
        width: 400px;

        margin-left: auto;
        margin-right: auto;

        scroll-margin-top: 10px;
    }
}