/*
Theme Name: Empty Theme
Author: Blanc Marée
Version: 0.0
*/

:root {
    touch-action: pan-x pan-y;
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

html {
    overflow: hidden auto;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    margin: 0;
    overflow: hidden auto;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

img {
    image-rendering: optimizeQuality;
    user-select: none;
    -webkit-user-select: none;
}

@media screen and (max-width: 1024px) {
    ::-webkit-scrollbar {
        background: transparent;
        display: none;
    }
}
