/* BLUE #0000FF, GREEN #00FFD0, YELLOW #FFCC00, PINK #FF00FF */

* {
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	margin: 0;
	background: #FAFAFA;
}

a {
	text-decoration: none;
	cursor: pointer;
}

::selection {
	background: #0000FF;
	color: #FFFFFF;
}

/* -------------------- MOBILE -------------------- */

mobile {
	display: none;
}

/* -------------------- HEADER -------------------- */

header {
	display: block;
	position: fixed;
	height: 6vw;
	width: 100%;
	left: 0;
	top: 0;
/* */
	background:linear-gradient(135deg, rgba(0,0,0,1) 0%, rgba(0,0,255,1) 15%, rgba(0,255,208,1) 30%, rgba(255,204,0,1) 40%, rgba(255,0,255,1) 50%, rgba(0,0,0,1) 70%);
}

header::after {
	position: fixed;
	height: 15px;
	width: 100%;
	left: 0;
	top: 6vw;
/* */
	background: url(../img/shadow.png) repeat-x;
	content: " ";
	opacity: 0.3;
}

blur {
	display: block;
	position: fixed;
	padding-left: 8vw;
	height: calc(6vw - 1px);
	width: 100%;
	top: 1px;
/* */
	background: rgba(0,0,0,0.3);
	backdrop-filter: blur(1vw);
}

.nav {
	display: inline-block;
	padding: 0 2vw;
	height: 6vw;
/* */
	text-transform: uppercase;
	font-family: 'Outfit', monospace;
	font-weight: 700;
	font-size: 1.5vw;
	line-height: 6vw;
	color: rgba(255,255,255,0.5);
}

.nav:hover {
	color: #FFFFFF;
}

.sel {
	color: #FFFFFF;
}

#logotype {
	position: fixed;
	display: inline;
	height: 2vw;
	width: 8vw;
	right: 3vw;
	top: 2vw;
/* */
	color: transparent;
/* */
	background: url(../img/logo-white.svg) no-repeat center center;
	background-size: contain;
	opacity: 0.5;
}

#logotype:hover {
	opacity: 1;
}

/* -------------------- FOOTER -------------------- */

footer {
	height: 18vw;
	width: 100%;
/* */
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: stretch;
	align-content: stretch;
/* */
	background: #F5F5F5;
}

#logo {
	height: 100%;
	width: 25%;
/* */
	color: transparent;
/* */
	background: url(../img/logo-color.svg) no-repeat;
	background-position: center 5vw;
	background-size: 50%;
}

#lefty {
	padding-top: 4.2vw;
	width: 10%;
}

#righty {
	padding-top: 4.2vw;
	width: 30%;
}

#lefty a, #righty a {
	display: block;
/* */
	font-family: 'Outfit', sans-serif;
	font-weight: 400;
	font-size: 1.2vw;
	line-height: 2.5vw;
	color: #777777;
}

#lefty a:hover, #righty a:hover {
	color: #222222;
}

#powered {
	height: 100%;
	width: 35%;
/* */
	color: transparent;
/* */
	background: url(../img/avcr.svg) no-repeat;
	background-position: center center;
	background-size: 70%;
}

@media only screen and (max-width: 744px) and (orientation: portrait) {

	/* -------------------- MOBILE HEADER -------------------- */

	header {
		display: none;
	}
	
	mobile {
		display: block;
		position: absolute;
		height: 15vw;
		width: 100%;
		left: 0;
		top: 0;
	/* */
		background: #000000;
	}
	
	mobile::before {
		display: block;
		position: absolute;
		height: 1vw;
		width: 100%;
		top: 14vw;
	/* */
		background: linear-gradient(90deg, rgba(0,0,255,1) 0%, rgba(0,255,208,1) 20%, rgba(255,204,0,1) 37%, rgba(255,0,255,1) 70%, rgba(0,0,0,1) 95%);
		content: " ";
	}
	
	#home {
		display: block;
		position: absolute;
		height: 6vw;
		width: 23vw;
		left: 5vw;
		top: 4vw;
	/* */
		color: transparent;
	/* */
		background: url(../img/logo-white.svg) no-repeat center center;
		background-size: contain;
	}
	
	mobile span {
		position: absolute;
		height: 14vw;
		right: 5vw;
		top: 0;
	}
	
	mobile span a {
		display: inline-block;
		margin: 0 2vw;
		height: 14vw;
	/* */
		text-transform: uppercase;
		font-family: 'Outfit', monospace;
		font-weight: 600;
		font-size: 2.5vw;
		line-height: 14vw;
		color: #FFFFFF;
	}
	
	mobile::after {
		position: absolute;
		height: 15px;
		width: 100%;
		left: 0;
		top: 15vw;
	/* */
		background: url(../img/shadow.png) repeat-x;
		content: " ";
		opacity: 0.3;
	}
	
	/* -------------------- MOBILE FOOTER -------------------- */

	footer {
		height: 28vw;
		padding-bottom: 5vw;
		background: none;
	}

	#logo, #lefty, #righty {
		display: none;
	}
	
	#powered {
		height: 100%;
		width: 50%;
	/* */
		color: transparent;
	/* */
		background: url(../img/avcr.svg) no-repeat;
		background-position: 20% center;
		background-size: 100%;
	}

}
