/*Default rulesets*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*Root*/
:root {
    --font: "Gaming";
    --font-var: "Round";
    --text-shadow-big: 0 0 2px #FFF, 
                    0 0 7px #4aff1869, 
                    0 0 50px #2bc700be;
    --text-shadow-little: 0 0 5px #FFF, 
                    0 0 10px #FFF, 
                    0 0 15px #FFF, 
                    0 0 20px #49ff18, 
                    0 0 30px #49FF18, 
                    0 0 40px #49FF18, 
                    0 0 55px #49FF18, 
                    0 0 75px #49ff18;
    --dark-green: #020800;
    --darker-green: #000000;
    --black: #060606;
    --green: #6FF927;
    --green-opacity: #71f9276c;
}

/*Font*/
@font-face {
    font-family: "Gaming";
    src: url("../fonts/gaming-font.woff2") format('woff2');
}

@font-face {
    font-family: "Round";
    src: url('../fonts/8d32c1b9a1cb4044370f57a0e920b203.woff2') format('woff2'),
        url('../fonts/8d32c1b9a1cb4044370f57a0e920b203.woff') format('woff');
}

/*Scrollbar*/
/* width */
::-webkit-scrollbar {
width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
background: var(--green);
border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: var(--green-opacity);
}

/*General rulesets*/
::selection {
    background-color: transparent;
}

body {
    background-color: var(--dark-green);
    font-family: var(--font);
    color: white;
    position: relative;
}

a {
    text-decoration: none;
}

#blob {
    position: absolute;
    height: 150px;
    aspect-ratio: 1;
    background-color: white;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    border-radius: 50%;
    background: linear-gradient(
    to right,
    rgb(127, 255, 155), 
    rgb(162, 216, 112)
    );
    filter: blur(100px);
    animation: rotate 20s infinite;
    opacity: .6;
}

@keyframes rotate {
    from {
        rotate: 0deg;
    }

    50% {
        scale: 1 1.5;
    }

    to {
        rotate: 360deg;
    }
}

.noise {
    background: url("../images/noise.svg");
    background-size: 180px;
    width: 100vw;
    height: 100%;
    opacity: .1;
    position: absolute;
    z-index: -2;
}

.grid {
    background: url("../images/grid.svg");
    width: 100vw;
    height: 100%;
    opacity: .1;
    position: absolute;
    z-index: -1;
}   

/*PRE-LANDING*/
body.pre-landing {
    overflow: hidden;
}

.continue {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.continue-title {
    text-align: center;
    text-shadow: var(--text-shadow-big);
}

.continue-title h1 {
    font-size: 120px;
    color: white;
    margin-bottom: 75px;
}

.continue-title h2 {
    font-size: 35px;
    margin-bottom: 30px;
}

.continue-options {
    display: flex;
    flex-direction: column;
}

.continue-options a {
    font-size: 30px;
    position: relative;
    cursor: pointer;
    text-shadow: var(--text-shadow-little);
    color: #FFFFFF;
}

.continue-options a:hover:before {
    opacity: 1;
}

.continue-options a::before {
    position: absolute;
    content: url("../images/next.png");
    left: -35px;
    transition: .5s all cubic-bezier(0.075, 0.82, 0.165, 1);
    opacity: 0;
}

.continue-options a:first-child {
    margin-bottom: 15px;
}

.transition {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    pointer-events: none;
    background: #ffffff;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}

#skull {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    width: 200px;
    height: auto;
    z-index: 10;
}


