*{
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* ===== Scrollbar CSS ===== */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-button {
    width: 0;
    height: 0;
}
::-webkit-scrollbar-thumb {
    background: #e6c068;
    border: 0 none #ffffff;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #f7f2b9;
}
::-webkit-scrollbar-thumb:active {
    background: #f7f2b9;
}
::-webkit-scrollbar-track {
    background: #1b1b1b;
    border: 0 none #ffffff;
    border-radius: 3px;
}
::-webkit-scrollbar-track:hover {
    background: #1b1b1b;
}
::-webkit-scrollbar-track:active {
    background: #1b1b1b;
}
::-webkit-scrollbar-corner {
    background: transparent;
}

body{
    background-color: #1b1b1b;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;

    margin: 0;
    padding: 0;

    height: 100vh;
}

p,a{
    background: radial-gradient(circle, rgba(247,242,185,1) 0%, rgba(230,192,104,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-family: SansSerif, sans-serif;
    font-weight: bolder;

    margin: 0;
    padding: 0;
}

/*body:hover > #pointer{
    opacity: 1;
}

#pointer{
    z-index: 99;

    height: 20px;
    width: 20px;

    position: absolute;
    opacity: 0;

    rotate: 15deg;
}*/