/* 
------------SPLASH PAGE---------------
*/

body {
	margin: 0;
	margin-top: -3%;
	overflow-x: hidden;
	font-family: 'poppins', sans-serif;
}

.bg {
	position: fixed;
	bottom: 0;
	left: calc(-100vh * (1024/1440) + 50vw);
	height: auto;
	width: calc(100vh * (1440/1024));
}

#desktop-logo {
	position: fixed;
	top: 1rem;
	left: 1rem;
	width: 150px;
}

#mobile-logo {
	margin-top: 1rem;
	margin-left: 1rem;
	width: 150px;
}

/* 
------------TITLE CONTAINER---------------
*/

#title-container {
	position: fixed;
	width: 100%;
	background-color: #133A57B2;
	z-index: 2;
	top: 12.5%;
	text-align: center;
}

#title-container #play {
	color: #FFD83B;
}

#title-container #create {
	color: #47D6DE;
}

#title-container #rethink {
	color: #FE6D73;
}

#title-container #title-text-container {
	width: 85%;
	margin: auto;
}

#title-container h1 {
	font-family: 'oswald', sans-serif;
	font-weight: 700;
	font-size: 5rem;
	margin: 2% 0 0 0;
}

#h1-text-container {
	width: 100%;
	margin: auto;
}

#title-container #subtitle {
	color: #FFC9B2;
	font-family: 'poppins', sans-serif;
	font-weight: 700;
	font-size: 1.7rem;
	margin-top: 0;
	margin-bottom: 1.5rem;
}

#title-container #body-text {
	color: white;
	font-family: 'poppins', sans-serif;
	font-weight: 500;
	font-size: 1.2rem;
	margin-top: 0;
}

.line-break {
	display: none;
}

#h1-text-container h1 {
	margin-top: 0;
}

#desktop-logo {
	display: block;
}

#mobile-logo {
	display: none;
}

/* 
------------DESKTOP---------------
*/

@media (min-aspect-ratio: 1440/1024) {
	.bg {
		position: fixed;
		width: 100%;
		height: auto;
		bottom: 0;
		left: 0;
	}
}

/* 
------------MOBILE---------------
*/

@media only screen and (max-width: 450px) {
	#title-container {
		top: 0;
	}

	#title-container h1 {
		line-height: 4rem;
		margin: 15% 0 0 0;
	}

	#title-container #play {
		font-size: 5.2rem;
	}

	#title-container #create {
		font-size: 3.5rem;
		line-height: 2rem;
	}

	#title-container #rethink {
		font-size: 3rem;
	}

	#title-container #subtitle {
		font-size: 1rem;
		margin-top: 5%;
	}

	#title-container #body-text {
		font-size: 14px;
	}

	.line-break {
		display: inline;
	}

	#desktop-logo {
		display: none;
	}

	#mobile-logo {
		display: block;
	}
}

/* 
------------TABLET---------------
*/

@media only screen and (min-width: 451px) and (max-width: 800px) {
	#title-container {
		top: 12.5%;
	}

	#title-container h1 {
		font-size: 4rem;
		margin: 2% 0 0 0;
	}

	#title-container #subtitle {
		font-size: 1.25rem;
		margin-top: 0;
	}

	#title-container #body-text {
		font-size: 0.85rem;
	}
}