:root {
    --font: 'Oxanium';
    --font2: 'PoiretOne';
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Oxanium';
    src: url('/assets/fonts/Oxanium-Light.woff2') format('woff2'),
        url('/assets/fonts/Oxanium-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'PoiretOne';
    src: url('/assets/fonts/PoiretOne-Regular.woff2') format('woff2'),
        url('/assets/fonts/PoiretOne-Regular.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

html,
body {
    height: 100%;
    position: relative;
    background: #000000;
    color: #fff;
    font-family: var(--font), sans-serif;
    overflow: hidden;
}

body::-webkit-scrollbar {
    width: 10px;
    z-index: 999999999999;
}

body::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 5px;
}

body::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 5px;
    border: 2px solid #1a1a1a;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

body {
    scrollbar-width: thin;
    scrollbar-color: #333 #1a1a1a;
}

#cursor-style {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0%, white 50%, #00000000 65%);
    pointer-events: none;
    user-select: none;
    position: fixed;
    z-index: 99999999999;
    opacity: 0.02;
}