@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

.logo {
	position: absolute;
	left: 10px;
	top: 10px;
	z-index: 99;
}
.logo img {
	max-width: 300px;
	width: 100%;
	height: auto;
}

.content {
	font-family: 'Ubuntu', sans-serif;
	position: relative;
	display: grid;
	justify-content: center;
	align-items: center;
	align-content: center;
	margin: 0 auto;
	min-height: 100vh;
}

.content--fixed {
	font-family: 'Ubuntu', sans-serif;
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	display: grid;
	align-content: space-between;
	width: 100%;
	max-width: none;
	min-height: 0;
	height: 100vh;
	padding: 1.5em;
	pointer-events: none;
	grid-template-columns: 50% 50%;
	grid-template-rows: auto auto 4em;
	grid-template-areas: 'header ...'
	'... ...'
	'github demos';
}

.content--fixed a {
	pointer-events: auto;
}

.scene {
	position: absolute;
}

.scene--left {
	width: 100vmin;
	height: 100vmin;
	transform: translate3d(-50vmin,0,0);
}

.scene--full {
	width: 100%;
	height: 100vh;
}

.scene--up {
	height: 150vmin;
	width: 150vmin;
	top: -50vh;
	left: 50%;
	margin-left: -75vmin;
}

.content__inner {
	grid-area: 1 / 1 / 1 / 1;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	align-content: center;
}
.content__title {
	font-size: 120px;
	font-weight: 500;
	line-height: 120px;
	color: #000;
	text-align: center;  
	margin: 0;
	margin-bottom: 50px;
	pointer-events: none;
	text-shadow: 2px 2px 4px #ffffff;
}

.content__subtitle {
	font-size: 30px;
	background: #1c4587;
	color: #fff;
	padding: 0.45em 0.5em;
	line-height: 40px;
	margin: 0;
	pointer-events: none;
	font-weight: bold;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
}

@media screen and (max-width: 55em) {
	.content__title {
		font-size: 3em;
		line-height: 1;
	}
	.content__subtitle {
		font-size: 0.85em;
		line-height: 1;
	}
}