/*                                                                                      
8 888888888o. `8.`8888.      ,8' 8 8888888888   b.             8 8 8888888888 8888888 8888888888 
8 8888    `88. `8.`8888.    ,8'  8 8888         888o.          8 8 8888             8 8888       
8 8888     `88  `8.`8888.  ,8'   8 8888         Y88888o.       8 8 8888             8 8888       
8 8888     ,88   `8.`8888.,8'    8 8888         .`Y888888o.    8 8 8888             8 8888       
8 8888.   ,88'    `8.`88888'     8 888888888888 8o. `Y888888o. 8 8 888888888888     8 8888       
8 888888888P'      `8. 8888      8 8888         8`Y8o. `Y88888o8 8 8888             8 8888       
8 8888`8b           `8 8888      8 8888         8   `Y8o. `Y8888 8 8888             8 8888       
8 8888 `8b.          8 8888      8 8888         8      `Y8o. `Y8 8 8888             8 8888       
8 8888   `8b.        8 8888      8 8888         8         `Y8o.` 8 8888             8 8888       
8 8888     `88.      8 8888      8 888888888888 8            `Yo 8 888888888888     8 8888       
*/

/* Page body */
body {
	min-height: 100vh;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	color: white;
	background-color: #3CB371;
	margin: 0;
	font-family: "Lucida Console", "Courier New", monospace;
}

/* Primary titles */
h1 {
	font-weight: bold;
	color: #3CB371;
	font-size: 7.5vmin;
}

/* Secondary titles */
h2 {
	font-weight: bold;
	color: #FFFCA5;
	font-size: 2rem;
}

/* Page text */
p {
	font-size: 1.5rem;
}

h3 {
	color: #FF6A5C;
	font-size: 1.5rem;
	
}

/* "Subtext" for links for additional information */
.a-subtext {
	color: #3CB371;
	float: left;
	width: 32.33%;
	margin-left: 1%;
	font-size: 1.25rem;
}

/* Link formatting */
a {
	float: left;
	margin-bottom: 4px;
	color: #3CB371;
	width: 100%;
	overflow-x: hidden;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	text-decoration: none;
	border-style: dashed solid solid solid;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Navigation bar */
.topnav {
	position: sticky;
	top: 0;
	background-color: #101010;
	overflow: hidden;
	border: 2px solid black;
	border-style: solid solid dashed solid;
	z-index: 9;
}

/* Style the links inside the navigation bar */
.topnav a {
	height: 1.67rem;
	height: auto;
}


/* Hide overflow on standard screens */
a.overflow {
	display: none;
}

/* Primary  page content */
.content {
	display: flex;
	flex-flow: row wrap;
	border-radius: 1rem 1rem 1rem 1rem;
	background-color: #101010;
	margin: 1rem 1rem 1rem 1rem;
	padding: 1rem;
}

/* Content columns */
.column {
	width: calc(50% - 2rem);
	padding: 1rem;
}

.column-flex {
	display: flex;
	flex-flow: row wrap;
	gap: 1rem;
	justify-content: space-between;
}

.column-flex > h3 {
	width: calc(30% - 2rem);
}

.column-flex > p{
	width: calc(70% - 2rem);
}

/* Bottom of content */
.content-bottom {
	width: 100%;
	align-self: flex-end;
}

/* Formatting for smaller screens */
@media screen and (max-width: 1000px) {
	.column-flex {
		display: block;
	}
	.column-flex > h3 {
		width: calc(100% - 2rem);
	}

	.column-flex > p{
		width: calc(100% - 2rem);
	}
}

@media screen and (max-width: 600px) {
	.topnav a:not(:first-child) {
		display: none;
	}

	.topnav a.overflow {
		width: auto;
		float: right;
		display: block;
	}
	.topnav.responsive {
		position: sticky;
	}

	.topnav.responsive .overflow {
		position: absolute;
		right: 0;
		top: 0;
	}

	.topnav.responsive a {
		width: auto;
		float: none;
		display: block;
		text-align: left;
	}

	.a-subtext {
		width: 100%;
	}

	.column {
		width: 100%;
	}
}

/* Change the color of links on hover */
a:hover {
	background-color: #FFFCA5;
}

/* Add a color to the active/current link */
a.active {
	background-color: #E0E0E0;
	color: #3B3A21;
}

a.logobtn {
	background-color: transparent;
	border: none;
	width: 4.5rem;
	height: 1.67rem;
}

hr.dotted {
	background-color: #FF6A5C;
	width: 100%;
	display: inline-block;
	border: none;
	border-top: 2px dashed black;
}

.header {
	width: 100%;
	display: flex;
}

.footer {
	margin-top: auto;
	color: black;
	width: 100vw;
	display: flex;
	bottom: 0;
	background-color: #FF6A5C;
	border-style: dashed none solid none;
}

.footer > p {
	font-size: 1rem;
	color: #202020;
	margin: 1vmin;
}

.blink {
	animation: blinker 1s ease infinite 2s;
}

@keyframes blinker {
	0% {
		opacity: 1;
	}

	49% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

.crt::after {
  content: " ";
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 10;
  pointer-events: none;
}
.crt::before {
  content: " ";
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0, 0, 0, 0.3) 51%
    );
  z-index: 10;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}
