html {
    font-size: 10px;
}

body {
    font-size: 2.4rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

@media all and (max-width: 800px) {
    html {
        font-size: 10px;
    }

    body {
        font-size: 1.6rem;
    }
}


.mob-blind {
    display: block !important
}

.mob-blind-flex {
    display: flex !important
}

.mob-blind-grid {
    display: grid !important
}

.mob {
    display: none !important;
}

.mob-flex {
    display: none !important;
}

.mob-grid {
    display: none !important;
}

.displaynone {
    display: none !important;
}

@media all and (max-width: 800px) {
    .mob-blind {
        display: none !important
    }

    .mob-blind-flex {
        display: none !important
    }

    .mob-blind-grid {
        display: none !important
    }

    .mob {
        display: block !important;
    }

    .mob-flex {
        display: flex !important;
    }

    .mob-grid {
        display: grid !important;
    }

}