@import url("https://fonts.googleapis.com/css2?family=Rubik");
html:not(.noglobal) {
	background-color: #000;
}
body:not(.noglobal) {
	margin:0;
}
div.bggradient {
	top:0; left:0;
	position:fixed;
	width: 100vw;
	height: 100vh;
	background: linear-gradient(0deg, #000 0%, #0f171f 100%);
	z-index: -10;
}

.textcenter {
	text-align: center;
}

.centerbig,.centertitle {
	position:absolute;
	top:50vh;
	left:50%;
	transform: translate(-50%,-50%);
	margin:0;
}
.centertitle {
	font-family: Rubik, sans-serif;
	color:#fff;
	font-size: 10vw; /* Can and should be changed depending on the text */
	user-select: none;
	text-shadow: 0 0 2vw #fff5;
}



p:not(.noglobal),
a:not(.noglobal),
i:not(.noglobal),
b:not(.noglobal),
h1:not(.noglobal),
h2:not(.noglobal),
li:not(.noglobal) {
	font-family: Rubik, sans-serif;
	color:#fff;
	margin: 8px 0;
}

code:not(.noglobal) {
	color:#fff;
	background-color: #000;
	padding: 2px;
	border-radius: 3px;
}

a:not(.noglobal) {
	color:#6d9eff;
	text-decoration: none;
}
a:not(.noglobal):hover {
	text-decoration: underline;
}
a:not(.noglobal):visited {
	color:#B998EE;
}