:root {
    --scroll-width: 8px;
    --scroll-border: 10px;
    --scroll-move: #873600;
    --scroll-back: #EDBB99;
    --theme: #D35400;
    --theme-s: #2471A3;
    --color: #555555;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Verdana, sans-serif;
    outline: none;
    font-size: 16px;
    user-select: none;
    cursor: default;
    color: var(--color);
}

*::selection {
    background-color: var(--theme);
    color: white;
}

body::-webkit-scrollbar,
textarea::-webkit-scrollbar {
    width: var(--scroll-width);
    height: auto;
}

body::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb {
    background: var(--scroll-move);
    border-radius: var(--scroll-border);
}

body::-webkit-scrollbar-track,
textarea::-webkit-scrollbar-track {
    background: var(--scroll-back);
    border-radius: var(--scroll-border);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
}

.d-none {
    display: none;
}

body {
    overflow-y: scroll;
    overflow-x: hidden;
}

.scroll-h {
    overflow: hidden;
}

@keyframes fade-in {
    0% {
        opacity: 0;
        filter: blur(25px);
    }

    50% {
        filter: blur(25px);
    }

    100% {
        opacity: 1;
        filter: blur(0px);
    }
}

body {
    animation: fade-in 2s forwards;
}

a {
    cursor: pointer;
    text-decoration: none;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}