* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: Varela Round, Comfortaa, Segoe UI, Open Sans, Tahoma, Verdana, sans-serif;
	background-color: #112;
}
#back {
	position: fixed;
	z-index: -1;
	top: -4px;
	left: 0;
	filter: blur(8px);
}
#view {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 18px;
	padding: 0 3vw;
}
span.title {
	background-image: linear-gradient(hsl(140, 100%, 50%), hsl(180, 100%, 50%));
	color: transparent;
	-webkit-background-clip: text;
	font-size: 6vh;
}
#view p, #view span:not(.title) {
	color: #eee;
}
.service {
	display: block;
	text-align: center;
	margin-top: 8px;
}
.service .service--title {
	padding: 2px 4px;
	background: hsl(260, 100%, 40%);
	border-radius: 100px;
}
.clickable {
	cursor: pointer;
}
.bottom-left {
	background-image: linear-gradient(#7779, #ccc9);
	color: transparent;
	-webkit-background-clip: text;
	position: fixed;
	font-size: 12px;
	padding: 10px;
	bottom: 0;
	left: 0;   /* partially copypasted from ziad's site sorry i am bad at code magics */
	text-align: left;
}
.bottom-right {
	background-image: linear-gradient(#7779, #ccc9);
	color: transparent;
	-webkit-background-clip: text;
	position: fixed;
	font-size: 12px;
	padding: 10px;
	bottom: 0;
	right: 0;
	text-align: right;
}