:root {
    --bgmobile: "";
    --bgdeks: "";
}

*::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html {
    overflow-x: hidden;
    width: 100%;
    touch-action: pan-x pan-y;
}


body {
    background-image: var(--bgmobile);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: pan-x pan-y;
}

div {
    pointer-events: auto;
    overflow: hidden;
}


#Loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(169, 180, 184);
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-family: Arial, sans-serif;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top-color: black;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes close {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        visibility: hidden;
    }
}

@media screen and (min-width: 760px) {
    body {
        background-image: var(--bgdeks);
    }
}

@font-face {
    font-family: Heavitas;
    src: url("./font/Heavitas.ttf");
}

@font-face {
    font-family: Roboto;
    src: url("./font/Roboto-Medium.ttf");
}