html,
body {
    margin: 0;
    padding: 0;
    cursor: default;
    user-select: none;
    scroll-behavior: smooth;
    background: #101010
}

body {
    transform-origin: top; 
    width: 100%;
    overflow-x: hidden;
}

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

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

.hidden {
    display: none !important;
    width: 0px !important;
    height: 0px !important;
}

.anime {
    visibility: hidden;
}

.entireAnime {
    visibility: hidden;
}

.animeGroup {
    visibility: hidden;
}

/* old code for footer */

.SectionContainer {
    flex-direction: column;

    display: flex;

    margin-left: 5px;
    margin-right: 5px;
}

.SectionViewport {
    /*display: flex;*/
    /*flex-direction: column;*/

    position: relative;

    width: calc(100% - 10px);
    max-width: 1200px;

    height: 100%;

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

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

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

#FooterSection {
    background-color: #2f2f2f;

    @media (max-width: 1239px) {
        background-color: #2f2f2f;
    }

    .Section {
        @media (max-width: 1239px) {
            background-color: #2f2f2f;
        }
    }

    .SectionViewport {
        background-color: #2f2f2f;
    }
}