:root {
    --Back: #030000;
}

@font-face {
    font-family: "B612Mono";
    src: url("B612Mono-Regular.ttf") format("opentype")
}

* {
    overflow: hidden;
    font-family: "B612Mono" !important;
    cursor: url("Cursor.png"), auto !important
}

body {
    background-color: var(--Back);
    transition: background-color 7ms;
}

body {
    cursor: none; /* Hide default cursor */
}

.Trail {
    position: absolute;
    width: 64px;
    height: 64px;
    background-image: url('./Cursor.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    transition: opacity 0.2s;
}

.Trail:nth-child(1)::before {
    opacity: 0.5;
}

.Trail:nth-child(2)::before {
    opacity: 0.25;
}

.Trail:nth-child(3)::before {
    opacity: 0;
}



#Body {
    cursor: url("Cursor.png"), auto !important
}

#ScreenTear {
    position: absolute;
    background-color: #ff1c07;
    height: 100%;
    width: 100%;
    opacity: 2%;
    animation: Tearing 90ms infinite;
    z-index: 1000;
}

#CursorForce {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0%;
    cursor: url("Cursor.png"), auto !important;
    z-index: 10000;
}

#Header {
    position: absolute;
    left: 50%;
    bottom: 15%;
    transform: translate(-50%, -50%);
    color: #ff1c07;
    font-size: 2.5ch;
    font-weight: 200 !important;
    text-shadow: #ff1c07 1px 0 10px;
    filter: url(#Text);
    background-color: #060000;
}

@keyframes Tearing {
    0% {
        transform: translate(0%, 175%);
    }
    50% {
        transform: translate(0%, -175%);
    }
    100% {
        transform: translate(0%, 175%);
    }
}