/*woot css up inpxere*/

@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

html{
	background-color: black;
	font-family: 'Roboto', sans-serif;
}

#scroll{
	overflow: hidden !important;
}

body{
	overflow-x: hidden !important;
	display: block;
	width: 100%;

	margin: 0px;
	padding: 0px;

	position: -webkit-sticky; /* Safari */
  	position: sticky;
}

h1{
	text-align: center;
	color: #ffffff;
	font-size: 86px;
	font-weight: bold;

	font-size: 4vw;
}

h2{
	float: right;
	position: absolute;
	right: 12.5%;
	margin-top: 15%;
	
	color: #f49ec4;
}

h2 a{
	margin: 0px 12px;
	
	color: #f49ec4;
}

h3{
	text-align: center;
}

#content{
	display: grid;
	position: relative;

	margin: 0px;
	padding: 0px;
}

.left-image {
	grid-column-start: 1;
	grid-column-end: 5;
	grid-row-start: 1;

	background-image: url("img/run.png");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: cover;

	z-index: 2;
	height: 100vh;
	margin: 0px;
	padding: 0px;

	/* Crop */
	width: 52%;

	/* Animation */
	-webkit-transition: -webkit-transform 0.7s;
	transition: -webkit-transform 0.7s;
	transition: transform 0.7s;
	transition: transform 0.7s, -webkit-transform 0.7s;

	overflow: hidden !important;
	transform: scale(0.92);
	margin-top: -60px;
	margin-left: -40px;
}

.left-image h1{
	float: left;
	position: absolute;
	left: 18%;
	margin-top: 40vh;
	
	color: #f49ec4;

	inline-size: 400px;
    overflow-wrap: break-word;

	background-color: rgba(0, 0, 0, 0.86);
}

.left-image:hover{
	-webkit-transform: scale(0.96);
	transform: scale(0.96);

	overflow: hidden;
}

.left-image h1:hover{
	color: #ffffff;
}

.right-image {
	grid-column-start: 1;
	grid-column-end: 5;
	grid-row-start: 1;

	background-image: url("img/loop.png");
	background-position: right top;
	background-repeat: no-repeat;
	background-size: cover;

	z-index: 1;
	height: 100vh;
	margin: 0px;
	padding: 0px;

	/* Animation */
	-webkit-transition: -webkit-transform 0.7s;
	transition: -webkit-transform 0.7s;
	transition: transform 0.7s;
	transition: transform 0.7s, -webkit-transform 0.7s;

	overflow: hidden !important;
	transform: scale(0.92);
	margin-top: -120px;
	margin-right: -120px;
}

.right-image h1{
	float: right;
	position: absolute;
	right: 18%;
	margin-top: 48.5vh;
	
	color: #f49ec4;

	inline-size: 400px;
    overflow-wrap: break-word;

	background-color: rgba(0, 0, 0, 0.86);
}

.right-image:hover{
	-webkit-transform: scale(0.96);
	transform: scale(0.96);

	overflow: hidden;
}

.right-image h1:hover{
	color: #ffffff;
}

.nav{
	display: block;
	padding: 24px;
	padding-bottom: 32px;
	float: none;
}

.nav a{
	text-decoration:none;
	font-size: 24px;
	color: #181719;
	font-weight: bold;
	
	float: right;
}

.navLeft{
	margin-right: 52px;
	
	position: relative;
}

.nav a:hover{
	color: #f49ec4;
}

a{
	text-decoration: none !important;
}

div{
	margin: 12px;
}

p{
	color: #181719;
	font-size: 18px;
	
	text-align: center;
}

p a{
	color: #f49ec4;
}

/*FOOTER SECTION*/
#footer{
	display: block;
	margin: auto;
	
	position: -webkit-sticky; /* Safari */
  	position: sticky;
  	top: 0;

	width: 120vw;
    z-index: 1000000;
	
	margin-top: -120px;
	margin-left: -12vw;
	padding-bottom: 4px;
	padding-top: 4px;

	background-color: black;
}

#footer p{
	font-size: 36px;
	font-weight: bold;
	text-align:center;
	color: #ffffff;

	margin-top: 0px;
}

#footer img{
	padding-left: 4px;
	padding-right: 4px;
	filter: brightness(1);

	width: 64px;
}

#footer img:hover{
	filter: brightness(2);
}

#imgLeft{
	margin-left: 40vw;
}

#iconRow{
	width: 400px;
	margin-left: 50vw;
}

/* DUMBASS PHONE SHIT */
@media screen and (max-width: 960px) {
	.left-image {
		grid-column-start: 1;
		grid-column-end: 5;
		grid-row-start: 1;

		height: 48vh;
		margin: 0px;
		padding: 0px;
	
		/* Crop */
		width: 120vw;
	
		margin-top: -40px;
		margin-left: -60px;
	}
	
	.left-image h1{
		left: 48%;
		margin-top: 36vh;
	}

	.right-image {
		grid-column-start: 1;
		grid-column-end: 5;
		grid-row-start: 2;

		background-position: right top;

		height: 60vh;
		margin: 0px;
		padding: 0px;
	
		/* Crop */
		width: 160vw;
	
		margin-top: -80px;
		margin-left: -320px;
	}
	
	.right-image h1{
		left: 24%;
		margin-top: 10vh;
	}

	/*FOOTER SECTION*/
	#footer{
		margin: auto;
}

	#footer p{
		font-size: 18px;
	}

	#footer img{
		width: 48px;
	}

	#iconRow{
		width: 400px;
	}
}

@media screen and (max-width: 690px) {
	.right-image {
		/* Crop */
		width: 160vw;
	
		margin-top: -80px;
		margin-left: -250px;
	}
}

@media screen and (max-width: 480px) {
	.left-image {
		/* Crop */
		width: 120vw;
	
		margin-top: -40px;
		margin-left: -30px;
	}

	.right-image {
		/* Crop */
		width: 160vw;
	
		margin-top: -80px;
		margin-left: -160px;
	}
}