html {
	background-image: url('/assets/img/bg/Layer05.png'), url('/assets/img/bg/Layer04.png'),	url('/assets/img/bg/Layer03.png'),	url('/assets/img/bg/Layer02.png'),	url('/assets/img/bg/Layer01.png'), url('/assets/img/bg/Background.png');
	animation: planetariumBackground 120s linear infinite;
	background-size: 600px 400px, 600px 400px, 600px 400px, 600px 400px, 600px 400px, 1200px 800px;
	max-width: 1290px;
	margin: 0 auto;
}

@keyframes planetariumBackground {
	from { background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%; }
	to { background-position: -7200px 4800px, -6000px 4000px, -4800px 3200px, -3600px 2400px, -2400px 1600px, -1200px 800px; }
}

body {
	font-family: 'Source Sans Pro', sans-serif;
	color: #e1e1e1;
	image-rendering: high-quality;
}

main {
	background: rgba(0, 8, 8, 0.191);
	border-radius: 1.125rem;
	box-shadow: 0rem 0rem 2.875rem 0.875rem rgba(8, 55, 90, 0.18);
	margin-bottom: 3rem;
	padding: 2rem;
}

h1, h2, h3 {
	font-weight: 600;
	margin-bottom: 1.5rem;
	text-align: center;
	text-shadow: 1px 1px 3px #444;
}

h1 {
	background-image: linear-gradient(45deg, #7DA5C9 0%, #17318A 100%);
	margin-bottom: 0.5rem;
}

p {
	font-size: 1.25em;
	line-height: 1.5;
	margin-bottom: 1.5rem;
	color: #e1e1e1;
	width: 74%;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

a {
	color: #95BAE6;
	word-wrap: break-word;
	text-decoration: none;
}

a:hover {
	color: #C6D7F7;
}

nav {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
	background: rgba(0, 8, 8, 0.191);
	padding: 1.5rem;
	border-radius: 1.125rem;
	box-shadow: 0rem 0rem 2.875rem 0.875rem rgba(8, 60, 94, 0.18);
}

nav a {
	padding: 0.75rem 1.5rem;
	background: #95BAE6;
	color: white;
	border-radius: 1rem;
	font-weight: 700;
	letter-spacing: 0.1rem;
	text-transform: uppercase;
	box-shadow: 0rem 0rem 1.25rem 0rem #8AA0C2;
	transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease;
	background-image: linear-gradient(270deg, #72A1C4 12%, rgba(149,186,230,0.008) 100%);
	font-size: 1.125em;
}

nav a:hover {
	transform: scale(1.06);
	background-color: #C6D7F7;
}

footer {
	background: rgba(8, 0, 8, 0.191);
	border-radius: 1.125rem;
	box-shadow: 0rem 0rem 2.875rem 0.875rem rgba(94, 8, 60, 0.18);
	padding: 2rem;
	text-align: center;
}

footer div {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

footer img {
	max-height: 31px;
	border-radius: 5px;
}

code {
	background-color: rgba(48, 48, 77, 0.9);
	padding: 0.25rem 0.5rem;
	border-radius: 0.25rem;
	color: #e1e1e1;
}

pre {
	white-space: pre-wrap;
	width: 72%;
	margin-left: auto;
	margin-right: auto;
	padding: 0.65em;
	background: rgba(48, 48, 77, 0.9);
	border-radius: 5px;
	overflow: auto;
}

.buttons {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin: 2rem 0;
	flex-wrap: wrap;
}

hr {
	height: 5px;
	background-color: rgba(201,12,12,0.161);
	background-image: linear-gradient(90deg, #E0A6A6 0%, transparent 100%);
	margin: 2rem auto;
	max-width: 84rem;
	border-radius: 0;
}

.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}

/* pita stands for pain in the ass*/
.pitaheader {
  display: flex;
  flex-direction: column; 
  align-items: center;
  gap: 1rem; 
  margin-bottom: 2rem;
}

.pitaheader .logo-overlay {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: fit-content; 
}

.pitaheader .base-logo {
  width: 200px;
  display: block;
}

.pitaheader .overlay-logo {
  position: absolute;
  top: 37px;
  right: 67%;
  width: 64px; 
  pointer-events: none;
}



@media (max-width: 768px) {
	h1 {
		font-size: 3.5em;
	}

	h2 {
		font-size: 3em;
	}

	nav {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	nav a {
		width: 100%;
		max-width: 20rem;
		text-align: center;
	}

	.buttons {
		margin: -2px;
	}
}

@media (max-width: 480px) {
	.section, main, footer {
		padding: 1.5rem 1rem;
	}

	h1 {
		font-size: 3.5em;
	}

	h2 {
		font-size: 3em;
	}

	.buttons {
		margin: -2px;
	}
}

@media screen and (max-width: 960px), screen and (orientation: portrait) {
	#index-image {
	display: none;
	}
	.index p {
		margin: 0px;
	}
}
