@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Oxanium:wght@200..800&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

@keyframes rgbFade {
	0% {
		color: #FF8080;
		border-color: #00FFFF;
	}

	16% {
		color: #FFFF80;
		border-color: #8080FF;
	}

	32% {
		color: #80FF80;
		border-color: #FF00FF;
	}

	48% {
		color: #80FFFF;
		border-color: #FF8080;
	}

	64% {
		color: #8080FF;
		border-color: #FFFF00;
	}

	80% {
		color: #FF80FF;
		border-color: #80FF80;
	}

	100% {
		color: #FF8080;
		border-color: #00FFFF;
	}
}

@keyframes rgbFadeDark {
	0% {
		color: #804040;
		border-color: #008080;
	}

	16% {
		color: #808040;
		border-color: #404080;
	}

	32% {
		color: #408040;
		border-color: #800080;
	}

	48% {
		color: #408080;
		border-color: #804040;
	}

	64% {
		color: #404080;
		border-color: #808000;
	}

	80% {
		color: #804080;
		border-color: #408040;
	}

	100% {
		color: #804040;
		border-color: #008080;
	}
}

@keyframes rgbFadeHue {
	from {
		filter: hue-rotate(0deg)
	}

	to {
		filter: hue-rotate(360deg)
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #1a0015;
	min-height: 100vh;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px;
}

/* Header Styles */
header {
	display: flex;
	width: 100%;
	align-content: stretch;
	align-items: flex-start;
	justify-content: space-between;
	padding: 1em;
	padding-top: 0;
	z-index: 0;
}

.header-right {
	position: absolute;
	top: 0;
	right: 0;
}

nav {
	position: sticky;
	top: .1em;
	display: flex;
	z-index: 10;
}

nav button {
	padding: .5em;
	margin: .25em;
}

nav button h3 {
	color: #FFF;
	animation: none;
}

.game-logo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	object-fit: cover;
	max-width: 100%;
	height: auto;
	max-height: 500px;
	animation: rgbFadeHue 60s infinite;
	background-image: url("assets/logo\ wip\ 4\ early\ access\ logo.svg");
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position-y: calc(50% - .5em);
}

.norender {
	opacity: 0;
}

h1 {
	font-family: "Orbitron", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	margin-bottom: 10px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h2,
h3,
h4,
h5,
h6 {
	font-family: "Oxanium", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

h1,
h2,
h4 {
	animation: rgbFade 60s infinite;
}

h5,
h6 {
	color: #FFF;
}

p,
body {
	font-family: "Saira", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings:
		"wdth" 100;
	color: #FFF;
}

a {
	text-decoration: underline;
	color: #FFF;
}

a:hover {
	color: #888;
}

a:visited {
	color: #AAA;
}

.split-column {
	display: flex;
	width: 100%;
	align-content: stretch;
	align-items: center;
	justify-content: center;
	flex-direction: row;
}

@media all and (max-width: 830px) {
	.split-column {
		flex-direction: column;
	}
}

.split-left,
.split-right {
	margin-top: auto;
	margin-bottom: auto;
	display: flex;
	flex-direction: column;
}

.split-left img,
.split-right img {
	margin-top: auto;
	margin-bottom: auto;
	max-height: 20em;
	max-width: 100%;
}

.split-left {
	align-self: flex-start;
	padding: 1em;
	padding-right: 2em;
	width: 100%;
}

.split-right {
	align-self: flex-end;
	padding: 1em;
	padding-left: 2em;
	width: 100%;
}

.split-left * {
	margin-right: 0;
	margin-left: auto;
}

.split-right * {
	margin-right: auto;
	margin-left: 0;
}

.split-contents {
	max-width: 760px;
}

.split-contents p {
	text-align: justify;
	float: center;
	margin-left: auto;
	margin-right: auto;
}

.split-medium {
	flex: 1.5 1 auto;
}

.split-small {
	flex: 0 1 auto;
}

button {
	background-color: #000000;
	animation: rgbFadeDark 60s infinite;
	border-style: double;
	border-radius: 3px;
}

button:hover {
	animation: rgbFade 60s infinite;
	cursor: pointer;
}

.video {
	aspect-ratio: 16/9;
}

.steam {
	width:646px;
}

@media all and (max-width: 830px) {
	.split-contents iframe, .steam {
		width: 100%;
	}

	
}

