body {
    /* https://cssreference.io/property/background-image/ */
   /* background-image: linear-gradient(#0066ff, #008cff);*/
    /* Can put multiple colors (one color for each console POG)
    https://learn.shayhowe.com/html-css/setting-backgrounds-and-gradients/ (see color stops, also see the url, could copy-paste)
    tl;dr: background: linear-gradient(#f6f1d3, #648880 20%, #293f50);
    Transparency is also supported, in case I want browser theme color, or to put an image in between the gradients
    https://www.w3schools.com/css/css3_gradients.asp*/

  /*TODO: When you are done, find a proper background color, in case can't load background-image! */
/*     background-image: url(banner1.jpg);
     background-attachment: fixed; */
     /* Cover doesn't work because it stretches itself so much, its a literally white background lmao */
     /* background-size: cover; */
     /* https://www.w3schools.com/cssref/css3_pr_background-size.asp */

  }

* {
	margin: 0;
	padding: 0;
}

@font-face {
	font-family: "magefont";
	src: url("font/WarriorFont\(Dalek\).ttf") format("truetype");
}


html {
	font-size: .7vw;
    width: 100vw;
    height: 100vh;
}


@media screen and (max-aspect-ratio: 1/1){
	html {
		font-size: 3.3vw;
		height: 120vh;
	}
}



.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;

}

#header {
	width: 100%;
	z-index: 0;
}

#header::before {
	content: "";
	z-index: -1;
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	background-size: cover;
	background-position: center;
	filter: blur(3px);
}
#header, #header::before {
	width: 100%;
	min-height: 37vw;
}



#header::before {
	background-image: url("images/background/marble-default-trimmed.png");
}

#header>#caped_guy {
	width: 100%;
	position: absolute;
	z-index: -1;
}

#header-double {
	font-family: "magefont";
	font-size: 17vw;
}

#header-damnation {
	width: 80vw;
	margin-left: 10vw;
	margin-top: -10vw;
}

#header-darkwind {
	position: relative;
	top: -100vw;
	left: 5vw;
	width: 120vw;
	margin-bottom: -100%;
}



@media screen and (max-aspect-ratio: 1/1){
	#header>#caped_guy {
		width: 100%;
		position: relative;
		z-index: 0;
	}

	#header, #header::before {
		width: 100%;
		min-height: 45vw;
	}

	#header-darkwind {
		position: relative;
		top: -103vw;
		left: 5vw;
		width: 120vw;
		margin-bottom: -100%;
	}

	#header, #header::before {
		width: 100%;
		min-height: 75vw;
	}


}

.mainpart {
    width: 100%;
    display: flex;
    align-items: center;
	background-size: cover;
	background-position: center;
    justify-content: space-around;
	z-index: 0;
}
.mainpart::before {
	content: "";
	z-index: -1;
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	background-size: cover;
	background-position: center;
	filter: blur(3px);
}


.mainpart, .mainpart::before {
	width: 100%;
	min-height: 110vh;
}

@media screen and (max-aspect-ratio: 1/1) {
	.mainpart, .mainpart::before {
		min-height: 250vw;
	}
}

@media screen and (min-aspect-ratio: 2/1) {
	.mainpart, .mainpart:before {
		min-height: 50vw;
	}
}

.mainpart-content {
	display: flex;
    align-items: center;
	background-size: cover;
	background-position: center;
    justify-content: space-around;
	width: 100%;
	height: 75%;
	font-size: 1vh;
}

@media screen and (max-aspect-ratio: 1/1) {
	.mainpart-content {
		flex-direction: column-reverse;
	}
}

#mainpart-1 .mainpart-img{
	box-shadow: 3px 3px .4em .5em rgba(31, 30, 30, 0.616);
}

@media screen and (max-aspect-ratio: 1/1) {
	#mainpart-1 .mainpart-img{
		box-shadow: 0 3px .4em .5em rgba(31, 30, 30, 0.616);
	}
}


#mainpart-1 .mainpart-text {
	text-shadow: 0 0 1em #0091ff;
}

#mainpart-1::before {
	background-image: url("images/background/banner1-trimmed-full.jpg");
}


#mainpart-2 .mainpart-img{
	box-shadow: -3px 3px .4em .5em rgba(49, 22, 0, 0.568);
}

@media screen and (max-aspect-ratio: 1/1) {
	#mainpart-2 .mainpart-img{
		box-shadow: 0px 3px .4em .5em rgba(31, 14, 0, 0.726);
	}
}

#mainpart-2 .mainpart-text {
	text-shadow: 0 0 .5em #ff9900;
}
#mainpart-2::before {
	background-image: url("images/background/banner2v1-trimmed-full.jpg");
}

@media screen and (orientation:landscape) {
	#mainpart-2 > .mainpart-content {
		flex-flow: row-reverse;
	}
}

#mainpart-3 .mainpart-img{
	box-shadow: 3px 3px .4em .5em rgba(31, 30, 30, 0.747);
}

@media screen and (max-aspect-ratio: 1/1) {
	#mainpart-3 .mainpart-img{
		box-shadow: 0px 3px .4em .5em rgba(31, 30, 30, 0.856);
	}
}


#mainpart-3 .mainpart-text {
	text-shadow: 0 0 .5em #b4b4b4;
}
#mainpart-3::before {
	background-image: URL("images/background/banner3-trimmed-full.jpg");
}




.mainpart-img {
	max-width: 45%;
	width: 45%;
	height: auto;
	position: relative;
	margin-right: 1%;
}

.mainpart-text {
	max-width: 45%;
	height: 100%;
	font-family: "magefont";
	font-size: 2.5rem;
	font-weight: bold;
	color: #000000;
	text-align: center;
}

.mainpart-text > h3 {
	font-size: 2em;
	flex-grow: 1;
}
.mainpart-text > p {
	flex-grow: 1;
}


@media screen and (max-aspect-ratio: 1/1) {
	.mainpart-text > h3 {
		font-size: .9em;
	}
	.mainpart-text > p {
		font-size: .6em;
	}

}

@media screen and (max-aspect-ratio: 1/1) {
	.mainpart-text {
		max-width: 90%;
		margin: 2vw;
	}
}

@media(max-aspect-ratio: 1/1) {
	.mainpart-img {
		height: auto;
		position: relative;
		margin-right: 0;
		max-width: 90%;
		width: 90%
	}
}


.footer::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	background-image: url("images/background/marble-default-trimmed.png");
	z-index: -1;
	background-size: cover;
	background-position: center;
	filter: blur(3px);

}

.footer {
	z-index: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.footer, .footer::before {
	width: 100%;
	height: 60vw;
}

@media screen and (max-aspect-ratio: 1/1) {
	.footer, .footer::before {
		height: 170vw;
	}
}

@media screen and (max-aspect-ratio: 3/10) {
	.footer, .footer::before {
		height: 170vw;
	}
}



#footer-video-platforms {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

@media screen and (max-aspect-ratio: 1/1) {
	#footer-video-platforms {
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}
}

.footer-video-container {
	position: relative;
	overflow: hidden;
	width: 75vw;
	height: 38.5vw;
	margin-top: 3%;
	margin-left: 5vw;
	box-shadow: 3px 3px .1em .1em rgba(31, 30, 30, 0.747);
}

.footer-video {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-aspect-ratio: 1/1) {
	.footer-video-container {
		margin-left: 0;
		margin-top: 7vh;
		width: 90%;
		height: 48vw;
		box-shadow: 0px 3px .2em .3em rgba(31, 30, 30, 0.856);
	}
}


.footer-platforms-container {
	width: 20%;
	height: 25%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-top: 3%;
	margin-right: 9vw;
}

@media screen and (max-aspect-ratio: 1/1) {
	.footer-platforms-container {
		width: 80%;
		margin-top: 10%;
		align-items: center;
		justify-content: space-around;
		flex-wrap: wrap;
		margin-right: 0;
		flex-direction: row;
	}
}


.footer-platforms {
	height: 10vw;
	width: 10vw;
	display: flex;
	margin-top: 1.6vw;
	align-items: center;
	flex-direction: row;
	font-size: 1.2vw;
}

.footer-platforms > a > img {
	width: 7vw;
	height: 7vw;
	margin-left: auto;
	margin-right: auto;
}

.footer-platforms > p {
	font-weight: bold;
	text-align: center;
	margin-left: 2vh;
	font-size: 1.6rem;
	margin-left: 2vh;
	color: #b8b81b;
}

@media screen and (max-aspect-ratio: 1/1) {

	.footer-platforms {
		height: 25vw;
		width: 30vw;
		display: flex;
		align-items: center;
		flex-direction: column;
	}

	.footer-platforms > a > img {
		width: 15vw;
		height: 15vw;
		margin-left: auto;
		margin-right: auto;
	}

	.footer-platforms > p {
		font-weight: bold;
		text-align: center;
		font-size: 1.1rem;
		margin-left: 0;
	}
}

#footer-social-container {
	width: 100%;
}

#footer-social-content {
	background-color:rgba(13, 13, 13, 1);
	min-height: 100px;
	width: 100%;
}

#footer-social-transparent-buffer {
	height: 45px;
	background-image: linear-gradient(rgba(13, 13, 13, .0), rgba(13, 13, 13, 1));
	margin-top: 25px;
}

#footer-social-content > p {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bolder;
	font-size: 2.6rem;
	color: #FFBF00;
	/* #FFBF00 #FFB300 #FaFab4*/
	margin-left: 5vw;
}

#footer-social-media {
	margin-top: 10px;
	margin-left: 5vw;
}

#footer-social-media > a > img {
	width: 4vw;
	height: 4vw;
	margin-right: 1vw
}

@media screen and (max-aspect-ratio: 1/1) {
	#footer-social-content > p {
		font-family: Arial, Helvetica, sans-serif;
		font-weight: bolder;
		font-size: 1.6rem;
		color: #b8b81b;
		margin-left: 5vw;
	}

	#footer-social-media {
		margin-top: 10px;
		margin-left: 5vw;
	}

	#footer-social-media > a > img {
		width: 15vw;
		height: 15vw;
		margin-right: 1vw
	}
}

a, a:hover, a:visited, a:active {
  color: inherit;
  text-decoration: none;
 }
