html, body {
    font-family: 'Concert One', cursive;
	background: black;
	overflow: hidden;
	width: 100%;
	height: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.centerAll {
	display: flex;
	justify-content: center;
	align-items: top;
	height: 100%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.brain {
    background-image: url('fxVE.gif');
    background-size: cover;
    position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
    height: 900px;
    width: 900px;
    z-index: 3;
    mix-blend-mode: overlay;
	animation: huerot 50s infinite;
}
.text {
    color: rgba(0,0,0,.3);
    font-size: 333px;
    z-index: 3;
    margin: auto 0;
    text-shadow: 5px 5px 30px #222, -5px -5px 13px #DEDEDE;
	position: relative;
	display: inline-block;
	opacity: .9;
}

.bounce1 {
    animation: bounce3 .04s infinite ease alternate;
}

.bounce2 {
    animation: bounce2 500s infinite ease alternate;
}

.bounce3 {
    animation: bounce3 0.01s infinite linear alternate;
}

.bounce4 {
    animation: bounce .03s infinite ease alternate;
}

@keyframes huerot {
	0% {
		-webkit-filter: hue-rotate(0);
		filter: hue-rotate(0);
	}
	100% {
		-webkit-filter: hue-rotate(360);
		filter: hue-rotate(360deg);
	}
}

@keyframes bounce {
    0% {
        transform: translateY(.4vh)
        rotate(1deg)
    }
    100% {
        transform: translateY(0vh)
		rotate(0deg)
    }
}


@keyframes bounce2 {
    0% {
        transform: translateX(.6vh) scale(1, 1.2)
        rotate(720000deg)
    }
    100% {
        transform: translateX(0vh) scale(1, 1.1)
	rotate(-720000deg)
    }
}

@keyframes bounce3 {
    0% {
        transform: translateX(.4vh)
    }
    100% {
        transform: translateX(-.4vh)
    }
}

@keyframes bounce4 {
    0% {
        transform: translateX(.5vh)
    }
    100% {
        transform: translateX(-.5vh)
    }
}

#nav {
    position: absolute;
    bottom: 24px;
    right: 26px;
    display: flex;
    gap: 14px;
    font-size: 12px;
    letter-spacing: 0.08rem;
    opacity: 0.65;
    pointer-events: auto;
    z-index: 200;
}

#nav a {
    color: #cdd8ff;
    text-decoration: none;
    padding: 6px 10px;
    border: 1px solid rgba(205, 216, 255, 0.18);
    border-radius: 12px;
    background: rgba(15, 20, 40, 0.35);
    transition: all 0.2s ease;
}

#nav a:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(25, 35, 60, 0.6);
    box-shadow: 0 0 10px rgba(120, 150, 255, 0.35);
}


