@font-face {
    font-family: Library3;
    src: url("../fonts/Library3.otf") format("opentype");
}

@font-face {
    font-family: NotCourierSans;
    src: url("../fonts/NotCourierSans.otf") format("opentype"), url("../fonts/NotCourierSans.ttf") format("truetype");
}

@font-face {
    font-family: NotCourierSans;
    font-weight: bold;
    src: url("../fonts/NotCourierSans-Bold.otf") format("opentype"), url("../fonts/NotCourierSans-Bold.ttf") format("truetype");
}

:root {
    --mouseX: 0px;
    --mouseY: 0px;
}


html, body {
    overflow:hidden;
    height: 100%;
    width: 100%;
    background-color: #000!important;
    color: #fff;
    font-family: "NotCourierSans";
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
}
html {
    cursor: url("data:image/svg+xml,%3Csvg height='6' width='6' viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4' cy='4' fill='%23eee' r='4'/%3E%3C/svg%3E") 3 3, auto;
}
a:hover {
    text-decoration: none!important;
}
.cursor {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--width);
    height: var(--height);
    transform: translate(calc(var(--x) - var(--width) / 2), calc(var(--y) - var(--height) / 2));
    transition: 150ms width cubic-bezier(0.39, 0.575, 0.565, 1),
    150ms height cubic-bezier(0.39, 0.575, 0.565, 1),
    150ms transform cubic-bezier(0.39, 0.575, 0.565, 1);
    z-index: 4;
    pointer-events: none;
    will-change: transform;
}
@media (pointer: fine) {
    .cursor {
        display: block;
    }
}
.cursor::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius);
    border: 2px solid #fff;
    opacity: var(--scale);
    -webkit-transform: scale(var(--scale));
    transform: scale(var(--scale));
    transition: 300ms opacity cubic-bezier(0.39, 0.575, 0.565, 1),
    300ms transform cubic-bezier(0.39, 0.575, 0.565, 1),
    150ms border-radius cubic-bezier(0.39, 0.575, 0.565, 1);
}

html:not(html:hover) .cursor::after {
    opacity: 0;
    transform: scale(0);
}
.loader {
    height: 100%;
    background: #000;
    z-index: 9999;
    position: absolute;
    width: 100%;
    transition: 0.5s;
}
.loader.hidden {
    height: 0%!important;
}
.loader.hidden .spinner{
    opacity: 0
}
.loader .spinner {
    height: 40px;
    width: 40px;
    background: rgba(0, 0, 0, .2);
    border-radius: 50%;
    border-top: 2px solid #c450fd;
    border-right: 2px solid transparent;
    transition: 0.2s;
    animation: spinner 600ms linear infinite;
}
@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}
.main {
    z-index: 1;
    position: absolute;
    transition: 0.6s;
}
.main.hidden {
    opacity: 0;
    transition: 0.6s;
}
.main h1{
    font-family: "Library3";
    color: #fff;
    background: linear-gradient(-45deg, #c450fd, #12c2e9, #c450fd, #f64f59, #c450fd, #12c2e9, #c450fd, #f64f59, #c450fd, #12c2e9, #c450fd, #f64f59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 800% 800%;
    animation: gradient 7s ease infinite;
    font-size: calc(4vw + 4vh - 2vmin - 5%);
    opacity: 0.7;
}

.main p{
    font-family: "NotCourierSans";
    color: #fff;
    text-align: center;
    font-size: 14px
}

.main .links a {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color:#fff;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    opacity: 0.3;
    transition: 0.3s;
}

btn:hover, a:hover {
    cursor:none;
}

.main .links a:hover {
    opacity: 1;
    transition: 0.3s;
    text-shadow: 0px 0px 10px rgba;
}

.overlay {
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.overlay .background {
    position: absolute;
    z-index: 1;
    opacity: .5;
    background: url(../images/pattern.png);
    background-repeat: repeat
}

.overlay video.hidden {
    transition: 1s;
    opacity: 0;
}

.overlay .video {
    position: absolute;
}

.overlay .particles {
    z-index: 10;
    position: absolute;
}

.overlay video {
    position: absolute;
    left: var(--mouseX);
    top: var(--mouseY);
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 1s;
}

@keyframes gradient {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 50% 100%;
    }
    100% {
        background-position: 0 50%;
    }
}
.modal-body a:hover{
    cursor:pointer!important;
}
