html,
body {
	height: 100%;
	padding: 0;
}

body {
	background: #1c1c1c;
	background: linear-gradient(
			0deg,
			rgba(28, 28, 28, 0.35) 70%,
			rgba(0, 0, 0, 0.35) 100%
		),
		#000000;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: 0px;
	padding: 0px;
	background-size: cover;
	background-attachment: fixed;
}

@font-face {
	font-family: "Inter";
	src: url("fonts/InterVariable.woff2");
}

@font-face {
	font-family: "Satoshi";
	src: url("fonts/Satoshi-Variable.woff");
}

@font-face {
	font-family: "InstrumentSans";
	src: url("fonts/InstrumentSans-VariableFont.ttf");
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
button {
	color: white;
	font-family: "Inter";
	text-shadow: 0px 0px 25px #000000cc;
}

.top-gradient {
	background: linear-gradient(#110b1750, #00000000);
	width: 100%;
	height: 100px;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9000; /* it's over 9000!! */
}

nav {
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	/*  max-width: 488px;
  min-width: 294px;
	width: 100%;*/
	width: clamp(294px, 80vw, 488px);
	padding-left: 12px;
	padding-right: 12px;
	/*  position: relative;*/
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9000; /* it's still over 9000!!! */
}

/*@media (max-width: 650px) {
	nav {
		width: 70%;
	}
}*/

nav .logo {
	filter: drop-shadow(0px 2px 4px #000000aa);
}

nav .buttons {
	display: flex;
	flex-direction: row;
	gap: 6px;
	width: 102px;
}
nav .buttons a button {
	cursor: pointer;
	background: none;
	border: 1px solid #ffffff20;
	width: 30px;
	height: 30px;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition-duration: 0.1s;
	scale: 1;
	box-shadow: 0px 2px 4px #000000aa;
}

nav .buttons button:hover {
	background: #ffffff07;
	scale: 1.05;
}

nav .buttons button:active {
	background: #00000007;
	scale: 0.95;
}

.main {
	display: flex;
	position: relative;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/*	height: 688px*/
	/*	padding-top: 7.5%;
	padding-bottom: 7.5%;*/
	height: 70vh;
	padding-top: 100px;
	/*	height: 72%;*/
	/*	height: calc(688px * (100vh / 1080));*/
}


.greeting {
	font-family: "Inter";
	font-weight: 300;
	font-size: 30px; /* outta scale down for my 900p display fr gng */
	margin: 0;
	margin-bottom: -15px;
}

.redefine-heading {
	display: flex;
	flex-direction: row;
	gap: 30px;
}

.redefine-heading * {
	font-family: "InstrumentSans";
	font-weight: bold;
	font-size: 107px; /* outta scale down for my 900p display fr vro */
	margin: 0;
	text-shadow: 0 0 32px #ffffff40;
}

.motto {
	display: flex;
	flex-direction: row;
	gap: 15px;
}

.motto * {
	background: linear-gradient(
			180deg,
			rgba(255, 87, 87, 0.35) 53%,
			rgba(194, 114, 255, 1) 100%
		),
		#ffffff;
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	font-family: "Inter";
	font-weight: 300;
	font-size: 53px; /* outta scale down for my 900p display fr twin */
	margin: 0;
	text-shadow: 0 4px 12px #00000073;
	margin-top: 5px;
}

.glow-motto {
	background: linear-gradient(
			180deg,
			rgba(255, 87, 87, 0.75) 53%,
			rgba(194, 114, 255, 1) 100%
		),
		#ffffff;
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	animation: motto-glow 1s ease-in-out infinite alternate;
}

@keyframes motto-glow {
	from {
		text-shadow: 0 4px 12px #00000073;
	}
	to {
		text-shadow: 0 4px 24px #ffffff50;
	}
}

@keyframes glow {
	from {
		text-shadow: 0 0 32px #ad337440;
	}
	to {
		text-shadow: 0 0 48px #ad337460;
	}
}

.aesthetic-text {
	background: linear-gradient(#ff5757, #590f92);
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	animation: glow 1s ease-in-out infinite alternate;
}

.content h1 {
	font-family: "InstrumentSans";
	font-size: 80px;
	margin-bottom: 12px;
}

.content p,
h6 {
	opacity: 0.7;
}

.content p {
	font-family: "Inter";
	font-weight: 300;
	font-size: 30px;
	margin: 0;
	margin-bottom: 6px;
}

.content h6 {
	margin-top: 0px;
	text-decoration: italic;
	font-weight: 300;
}

.align-left {
	text-align: left;
}

.align-right {
	text-align: right;
}

.main-buttons {
	display: flex;
	flex-direction: row;
	box-shadow: 0px 4px 24px #00000060;
	gap: 8px;
	margin-top: 15px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.main-buttons * {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	border: none;
	/*	width: 120px;*/
	text-decoration: none;
	cursor: pointer;
	padding: 0;
}

.main-buttons img {
	width: 30px;
	height: 30px;
	margin-right: 8px;
	color: white;
}

.main-buttons .download {
	background: #ad3374aa;
	background: linear-gradient(0deg, #ffffff10 0%, #ffffff00 100%), #ad3374aa;
	padding: 2px 12px;
	border: 1px solid #ffffff20;
	transition-duration: 0.1s;
	scale: 1;
}

.main-buttons .download:hover {
	background: #c73b85aa;
	background: linear-gradient(0deg, #ffffff10 0%, #ffffff00 100%), #c73b85aa;
	scale: 1.02;
}

.main-buttons .download:active {
	background: #942c63aa;
	background: linear-gradient(0deg, #ffffff10 0%, #ffffff00 100%), #942c63aa;
	scale: 0.98;
}

.main-buttons .github {
	background: #161b22aa;
	background: linear-gradient(0deg, #ffffff10 0%, #ffffff00 100%), #161b22aa;
	padding: 2px 12px;
	border: 1px solid #ffffff20;
	transition-duration: 0.1s;
	scale: 1;
}

.main-buttons .github:hover {
	background: #21262daa;
	background: linear-gradient(0deg, #ffffff10 0%, #ffffff00 100%), #21262daa;
	scale: 1.02;
}

.main-buttons .github:active {
	background: #0d1117aa;
	background: linear-gradient(0deg, #ffffff10 0%, #ffffff00 100%), #0d1117aa;
	scale: 0.98;
}

.img-placeholder {
	background-color: #ffffff50;
	width: 500px;
	height: 300px;
}

.download-btn {
	padding: 12px 20px;
	/*	background-color: #ffffff00;*/
	background-image: linear-gradient(#c82bd9, #7400d9);
	border: 1px solid #ffffff50;
	border-radius: 20px;
	font-size: 17px;
}

@media (max-width: 1378px) {
	.redefine-heading * {
		font-size: 80px;
	}

	.redefine-heading {
		gap: 20px;
	}

	.greeting {
		font-size: 25px;
		margin-bottom: 0px;
	}
}

@media (max-width: 965px) {
	.redefine-heading * {
		font-size: 50px;
	}

	.redefine-heading {
		gap: 12px;
	}

	.motto * {
		font-size: 40px;
	}

	.motto {
		gap: 10px;
	}

	.greeting {
		font-size: 20px;
		margin-bottom: 0px;
	}

	.content {
		padding: 45px 80px;
	}

	.content h1 {
		font-size: 50px;
	}

	.content p {
		font-size: 15px;
	}
}

@media (max-width: 600px) {
	.redefine-heading * {
		font-size: 40px;
	}

	.redefine-heading {
		gap: 7px;
	}

	.motto * {
		font-size: 30px;
	}

	.motto {
		gap: 7px;
	}

	.greeting {
		font-size: 15px;
		margin-bottom: 0px;
		opacity: 0.5;
	}

	.main-buttons {
		scale: 0.8;
	}

	.content {
		padding: 30px 50px;
	}

	.content h1 {
		font-size: 30px;
	}

	.content p {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.redefine-heading * {
		font-size: 25px;
	}

	.redefine-heading {
		gap: 5px;
	}

	.motto * {
		font-size: 20px !important;
	}

	.motto {
		gap: 5px;
	}

	.main-buttons {
		flex-direction: column;
	}

	.content {
		padding: 20px 35px;
	}

	.content h1 {
		font-size: 30px;
	}

	.content p {
		font-size: 15px;
	}
}

.main-sm {
	display: flex;
	position: relative;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
	/*	height: 688px*/
	/*	padding-top: 7.5%;
	padding-bottom: 7.5%;*/
	height: calc(25vh - 20px);
	padding-top: 20px;
	/*	height: 72%;*/
	/*	height: calc(688px * (100vh / 1080));*/
}

.content-sm {
	background: #ffffff06;
	border: 1px solid #ffffff40;
	border-radius: 8px;
	padding: 45px 50px;
	width: calc(60% - 50px);
	/* height: 500px; */
	height: auto;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0px -8px 48px #00000040;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 100px;
}
/* 
.content-sm h1 {
	font-family: "InstrumentSans";
	font-size: 80px;
	margin-bottom: 12px;
}

.content-sm p,
h6 {
	opacity: 0.7;
}

.content-sm p {
	font-family: "Inter";
	font-weight: 300;
	font-size: 30px;
	margin: 0;
	margin-bottom: 6px;
}

.content-sm h6 {
	margin-top: 0px;
	text-decoration: italic;
	font-weight: 300;
} */

.deadspace {
	margin: 0;
	padding: 0;
	height: 200px;
}

.noise {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 2%;
}

.stars {
	background-blend-mode: hard-light;
	mix-blend-mode: hard-light;
	opacity: 70%;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: 0px;
	padding: 0px;	
	background-size: cover;
	background-attachment: fixed;
	position: fixed;
}

.stars > img {
	width: 100%;
	height: 100%;
	object-fit: cover; 
	object-position: center;
	position: fixed;
}

/* Downloads Page */
.distro-buttons {
	display: flex;
	flex-direction: row;
	gap: 8px;
	margin-top: 15px;
}

.distro-buttons * {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	border: none;
	text-decoration: none;
	cursor: pointer;
	padding: 0;
}

.distro-buttons img {
	width: 25px;
	height: 25px;
	margin-right: 8px;
	color: white;
}

.distro-buttons .archbtw {
	background: #2492d6aa;
	background: linear-gradient(0deg, #ffffff10 0%, #ffffff00 100%), #2492d6aa;
	padding: 0px 25px;
	border: 1px solid #ffffff20;
	border-radius: 20px;
	font-size: 17px;
	transition-duration: 0.1s;
	width: 180px;
	scale: 1;
	box-shadow: 0px 4px 24px #00000060;
}

.distro-buttons .archbtw:hover {
	background: #29a3f0aa;
	background: linear-gradient(0deg, #ffffff10 0%, #ffffff00 100%), #29a3f0aa;
	scale: 1.02;
}

.distro-buttons .archbtw:active {
	background: #2081bdaa;
	background: linear-gradient(0deg, #ffffff10 0%, #ffffff00 100%), #2081bdaa;
	scale: 0.98;
}

.distro-buttons .uwuntu {
	background: #d94c14aa;
	background: linear-gradient(0deg, #ffffff10 0%, #ffffff00 100%), #d94c14aa;
	padding: 0px 25px;
	border: 1px solid #ffffff20;
	border-radius: 20px;
	font-size: 17px;
	transition-duration: 0.1s;
	width: 180px;
	scale: 1;
	box-shadow: 0px 4px 24px #00000060;
}

.distro-buttons .uwuntu:hover {
	background: #f25416aa;
	background: linear-gradient(0deg, #ffffff10 0%, #ffffff00 100%), #f25416aa;
	scale: 1.02;
}

.distro-buttons .uwuntu:active {
	background: #bf4311aa;
	background: linear-gradient(0deg, #ffffff10 0%, #ffffff00 100%), #bf4311aa;
	scale: 0.98;
}

.distro-flavors {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	border: none;
	text-decoration: none;
	cursor: pointer;
	padding: 0;
	width: 100%;
	margin-bottom: 45px;
}

.title {
	font-family: "Inter";
	font-weight: 300;
	font-size: 30px;
	margin: 0;
	margin-bottom: 6px;
	opacity: 0.7;
}

.wiki-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	border: none;
	text-decoration: none;
	cursor: pointer;
	padding: 0;
	width: 100%;
	text-align: center;	
}

.wiki {
	background: #161b22AA;
	background: linear-gradient(0deg, #ffffff10 0%, #ffffff00 100%), #161b22AA;
	padding: 0px 25px;
	border: 1px solid #ffffff20;
	border-radius: 20px;
	font-size: 17px;
	transition-duration: 0.1s;
	width: 280px;
	/* width: 180px; */
	scale: 1;
	box-shadow: 0px 4px 24px #00000060;
}

.wiki:hover {
	background: #21262dAA;
	background: linear-gradient(0deg, #ffffff10 0%, #ffffff00 100%), #21262dAA;
	scale: 1.02;
}

.wiki:active {
	background: #0d1117AA;
	background: linear-gradient(0deg, #ffffff10 0%, #ffffff00 100%), #0d1117AA;
	scale: 0.98;
}
