:root {
	--full-black: #000;
	--full-white: #fff;
	--text-white: #f0f0f0;
	--gray: #333;
	--dark-gray: #121212;
	--text-gray: #777;
	--blue: #2997ff;
}

html {
	height: 100%;
	width: 100%;
	background-color: var(--full-black);
}

body {
	font-size: 16pt;
	font-weight: 300;
	font-family: system-ui, sans-serif;
	margin: 0;
	padding: 0;

	background-color: var(--full-black);
	color: var(--text-white);
	margin-bottom: 50px;
}

#logo-bg {
	background-image: url('imgs/bg1.png');
	filter: blur(5px);
	-webkit-filter: blur(5px);
	background-repeat: no-repeat;
	background-size: cover;
	/* This will make sure the image covers the entire body */
	background-position: center;
	height: 1000px;
}

#logo-section {
	position: absolute;
	left: 50%;
	top: 0%;
	transform: translate(-50%,0%);
	z-index: 2;
	margin-block-start: 200px;
	margin-block-end: 25px;
	padding-bottom: 30px;
	padding-left: 50px;
	padding-right: 50px;
	border-radius: 50px;
	/* background-color: rgba(0,0,0, 0.2); */
}

#logo {
	/* font-family: Futura; */
	font-variant: small-caps;
	color: var(--text-white);
	text-align: center;
	display: block;
	font-size: 75pt;
	font-weight: 900;
}

#logo-content {
	/* font-family: Futura; */
	color: var(--text-white);
	text-align: center;
	display: block;
	margin-block-start: 25px;
	margin-block-end: 25px;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	font-weight: 300;
}

.links {
	color: var(--blue);
	text-decoration: none;
	font-weight: 300;
	position: relative;
	/* Ensure the .links element is positioned */
	display: inline-block;
	/* This helps with vertical alignment */
}

.links::after {
	content: "›";
	padding: 5px;
	font-size: 16pt;
	text-decoration: none;
	position: absolute;
	/* Position the ::after pseudo-element absolutely */
	top: 50%;
	/* Center the ::after pseudo-element vertically */
	transform: translateY(-50%);
	/* Adjust the vertical alignment */
}

.links:hover {
	text-decoration: underline;
	/* Add underline on hover */
}

.topnav {
	position: -webkit-sticky;
	/* For Safari */
	position: sticky;
	top: 0;
	z-index: 1000;
	overflow: hidden;
	background-color: rgba(18, 18, 18, 0.75);
	border-bottom: 1px solid var(--gray);
	display: flex;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.topnav a {
	color: var(--text-white);
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 12pt;
	font-weight: 600;
	transition: all 0.3s ease;
}

.topnav a:hover {
	color: var(--full-white);
}

.content {
	display: block;
	background-color: var(--full-black);
	padding: 10px 20%;
}

.content-alt-color {
	display: block;
	background-color: var(--dark-gray);
	padding: 10px 20%;
}


h1 {
	color: var(--text-white);
	text-align: center;
	display: block;
	font-size: 30pt;
	margin-block-start: 25px;
	margin-block-end: 25px;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	font-weight: 700;
}

summary,
p {
	color: var(--text-white);
	display: block;
	margin-block-start: 15px;
	margin-block-end: 15px;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	font-size: 16pt;
}

summary::-webkit-details-marker {
	display: none;
}

summary:after {
	content: "+";
	font-family: monospace;
	margin-left: 10px;
	border: 1px solid var(--full-white);
	border-radius: 7.5px;
	background-color: var(--text-white);
	color: var(--full-black);
	height: 20px;
	width: 20px;
	text-align: center;
	line-height: 20px;
	display: inline-block;
}

summary:hover {
	cursor: pointer;
}

.details-content {
	padding-left: 15px;
}

details[open]>summary:after {
	content: "-";
}

details .details-content {
	opacity: 0;
}

details[open] .details-content {
	animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

img {
	max-width: 100%;
	height: auto;
}

footer {
	font-size: 10pt;
	color: var(--text-gray);
	padding: 10px 25%;
	background-color: var(--full-black);
}

hr {
	height: 1px;
	border-width: 0;
	color: var(--text-gray);
	background-color: var(--text-gray);
}

.section-background {
	padding: 30px;
	position: relative;
	z-index: 1;
	background: var(--dark-gray);
	border-radius: 30px;
	display: flex;
}

.section-background-alt-color {
	padding: 30px;
	position: relative;
	z-index: 1;
	background: var(--full-black);
	border-radius: 30px;
	display: flex;
}

.section {
	height: 100%;
}

.section-title {
	flex: 1;
	margin: 0px 15px;
	vertical-align: top;
	font-weight: 600;
}

.section-content {
	flex: 3;
	margin: 0px 15px;
}


/*

.toast {
	font-size: 15pt;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(0, 0, 0, 0.8);
	color: var(--full-white);
	padding: 15px 25px;
	border-radius: 10px;
	display: none;
	z-index: 9999;
}

.grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.grid-card {
	background-color: #090909;
	border: 1px solid var(--full-black);
	border-radius: 20px;
	padding: 20px;
	transition: all 0.3s ease;
}

.grid-card:hover {
	background-color: #fefefe;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}


a {
	color: #0071E3;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover,
a:visited:hover {
	text-decoration: underline;
}
*/