:root {
	--threat-low: #92d050;
	--threat-moderate: #ffff00;
	--threat-elevated: #ff4300; 
	--threat-high: #930e0e;
	--red: #ff0000;
	--red: #ff0000;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	color: white;
	font-family: 'Roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
}

html {
	background-color: black;
	color: white;

	background: black;
}

header {
	height: 10vh;
	background-color: rgba(0, 0, 0, 1);
	position: sticky;
	top: 0;
	z-index: 9999;
	box-shadow: 0 1vh 2vh 0 black;
	align-content: center;

	display: flex;
	justify-content: space-between;
	align-items: center;
}

.narrow {
}

.profile-pic {
	height: 40vh;
	border-radius: 1vh;
	box-shadow: 1vh 1vh 1vh 1vh black;
}

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

.header-image {
	height: 100%;
	padding: 1vh;
}

.team-member-info {
}

.together {
	background-position: left;
	background-repeat: no-repeat;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/static/fiber_left.png');
	background-size: cover;
	padding-right: 2vw;

	display: flex;
	align-items: center;
	height: 10vh;
}

.mono {
	font-family: 'Roboto Mono', monospace;
}

.content {
}

.left_margin {
	position: absolute;
	left: 0;
	top: 10vh;
	width: 19vw;
	height: 90vh;
	text-align: center;
	font-size: 1vw;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.right_margin {
	position: absolute;
	right: 1vw;
	top: 10vh;
	width: 18.5vw;
	height: 90vh;
	text-align: center;
	font-size: 1vw;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.hidden {
	display: none !important;
}

.chat_list {
	width: 100%;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	overflow-y: auto;
	border-right: 0.125vw solid grey;
}

.chat_list_item {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
	padding-left: 0.5vw;
	padding-right: 0.5vw;

	background: #111;
	transition-duration: 0.3s;
	flex: 1;
}

.chat_list_item:hover {
	background: #333;
	cursor: pointer;
}

.contacts {
	color: white;
	background: #111;
}

.chat_area {
	display: flex;
	flex-direction: column;
	height: 86vh;
	width: 58vw;
	margin: auto;
	margin-top: 2vh;
	margin-bottom: 2vh;
	gap: 2vh;

	background: #111;
	border-radius: 0.5vw;
}

.chat_instructions {
	height: 30vh;
	width: 40vw;
	margin: auto;
	gap: 2vh;

	background: #111;

	border-radius: 1vh;
	box-shadow: 1vh 1vh 1vh 1vh rgba(0, 0, 0, 0.8);
	background: rgba(0, 0, 0, 0.9);	
	padding: 2vh;

	font-size: 3.5vh !important;
}


.chat_info {
	width: 100%;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	overflow-y: auto;
	justify-content: center;
}

.chat_info img {
	padding: 1vw;
	border-radius: 1.5vw;
}

.chat_info .button {
	width: fit-content;
	margin: auto;
	margin-top: 1vw;
	margin-bottom: 0;
}

.no_dec {
	text-decoration: none !important;
}

.section, form {
	background: black;
	padding-left: 16vw;
	padding-right: 16vw;
	padding-top: 2vh;
	padding-bottom: 2vh;
}

.align-top {
	align-items: flex-start !important;
}

.parallax {
	background-position: center;
	background-repeat: repeat; /* Repeat vertically */
	background-size: 40% auto; /* Stretch horizontally to fit the width, auto for height */
	background-image: url("/static/circuit_tile.webp");

}

.infinite_back {
	background-position: center;
	background-repeat: repeat; /* Repeat vertically */
	background-size: 40% auto; /* Stretch horizontally to fit the width, auto for height */
	background-image: url("/static/circuit_tile.webp");
}

.noback {
	background: none !important;
}

.parallax .section {
	background: rgba(0, 0, 0, 0.5);
	height: 100%;
	filter: contrast(150%);

	/* Flexbox properties for vertical centering */
	display: flex;
	align-items: center;
	justify-content: center;
}

.parallax p, .parallax pre {
	font-size: 28px;
}

.force-center {
	text-align: center;
	display: block;
	margin: auto;
}

.full-width {
	width: 100%;
}

.bold {
	font-weight: bold;
}

.fiber-left {
	background-position: left;
	background-repeat: no-repeat;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/static/fiber_left.png');
}

.fiber-right {
	background-position: right;
	background-repeat: no-repeat;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/static/fiber_right.png');
}

.fabric {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;	
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/static/fabric.jpg');
}

h1, h2 {
	text-align: center;
	padding: 2vh;
}

h1 {
	font-size: 36px;
}

h2 {
	color: var(--red);
	font-size: 28px;
}

h3 {
	font-size: 22px;
}

p, pre {
	padding-bottom: 2vh;
}

.white {
	color: white !important;
}

.red {
	color: var(--red) !important;
}

.spacer {
	height: 8vh;
}

/* The popup background overlay */
.popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1000;
}

/* The popup window */
.popup {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 20px;
	border-radius: 8px;
	z-index: 1001;

	width: 60vw;
	height: 60vh;

	background: rgba(0, 0, 0, 0.8)

}

/* Close button */
.popup-close {
	position: absolute;
	top: 2vh;
	right: 2vh;
	cursor: pointer;

	filter: invert();
	width: 4vh;
	height: 4vh;
}

.dropdown {
	position: relative;
	display: inline-block;
	text-align: center;

	padding-right: 4vw;
}

.dropdown label, header a {
	font-size: 1.5vw;
	cursor: pointer;
	text-decoration: none;
}

.dropdown-content {
	display: none;
	position: absolute;
	z-index: 1;
	cursor: pointer;
}

.dropdown-content a {
	padding: 0.5vw;
	text-decoration: none;
	display: block;
	background-color: #030303;
	transition-duration: 0.25s;
	font-size: 1vw;
}

.dropdown-content a:hover {
	background-color: white;
	color: #030303;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.profile {
	display: grid;
	grid-template-columns: 1fr 3fr; /* 1 part for the first column, 3 parts for the second column */
	padding-top: 4vh;
	padding-bottom: 4vh;
}

.profile img {
	width: 12vw;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border: 0.25vh solid grey;
	border-radius: 3vh 0 3vh 0;
	object-position: center top;
}

span {
}

.red {
	color: red;
}

p, label, input, textarea, pre, select, option {
	font-family: 'Arial', 'Helvetica', sans-serif; /* Use Arial or Helvetica as primary fonts, and if they're not available, use the default sans-serif font of the system */
	font-size: 22px; /* A typical size for body text; adjust as needed */
	line-height: 1.5; /* Spacing between lines to improve readability */
	color: #eee; /* A dark gray color that's gentler on the eyes than pure black */
	margin: 0.5em 0; /* Some vertical spacing above and below paragraphs */
	word-spacing: 0.5px; /* Spacing between words */
	letter-spacing: 0.5px; /* Spacing between characters; can improve legibility */
}

select, option {
	width: 100%;
	color: black;
	padding: 0.5vh;
}

pre {
	text-wrap: wrap;
	font-size: 24px;
}

footer {
	padding: 20vh;
	box-shadow: inset black 0vw 1vw 5vw 1vw;
}

.admin_options {
	border: 0.5vh solid red;
	margin-left: 16vw;
	margin-right: 16vw;
}

footer-container {
	margin: 20vh;
}

footer p {
	text-align: center;
}

.deck {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
	justify-content: center;
}

.half {
	width: 50%;
	margin: auto;
	display: block;
	padding-bottom: 2vh;
}

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

.twin {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8vh;
}

.home-logo {
	height: 70vh;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 2vh;
	box-shadow: 2vh 2vh 2vh 2vh rgba(0, 0, 0, 0.8);
}

.home-twin {
	display: grid;
	grid-template-columns: 1fr 10fr;
	gap: 8vh;
	width: 100%;
	align-items: center;
}

.home-text {
	height: 70vh;
	border-radius: 1vh;
	box-shadow: 1vh 1vh 1vh 1vh rgba(0, 0, 0, 0.8);
	background: rgba(0, 0, 0, 0.9);	
	padding: 2vh;

	font-size: 3.5vh !important;

	overflow-y: auto;
}

.fakepost {
	border-radius: 1vh;
	background: rgba(0, 0, 0, 0.9);	
	padding: 2vh;
	font-size: 3.5vh !important;
	overflow-y: auto;
	margin-bottom: 1vh;

	width: fit-content;
	margin: auto;
	margin-top: 1vh;
	margin-bottom: 1vh;
	display: block;
}

.back_to_forum {
	margin: auto;
	margin-top: 4vh;
	margin-bottom: 4vh;

	font-size: x-large !important;
	font-weight: bold;
	width: 100%;
	display: block;
	text-align: center;
}

.category {
	text-align: center;
	background: red;
	padding: 0;
	margin: 0;
	color: white !important;
	font-weight: bold;
}

.post {
	border-radius: 1vh;
	font-size: 3.5vh !important;
	overflow-y: auto;
	margin-bottom: 1vh;

	width: 100%;
	margin-top: 0vh;
	margin-bottom: 2vh;
	display: block;

	text-decoration: none;
	transition-duration: 0.3s;

	background: rgba(255, 255, 255, 0.75);	
}

.post_flex {
	display: flex;
	padding: 2vh;
}

a.post:hover {
	background: rgba(255, 255, 255, 1);	
}

.post p {
	color: black;
	flex: 1;
	padding-right: 2vw;
}

.post-container {
	width: 80vw;
	margin: auto;
	display: block;
	position: relative;
}

.message_details {
	display: flex;
	flex-direction: column;
	width: 12vw;
}

.message_details img {
	aspect-ratio: 1;
	width: 100%;
	border-radius: 1vh;
}

.delete-icon, .delete-form {
	position: absolute;
	top: 2vh;
	right: -4vw;
	text-decoration: none;
	background: none;
	padding: 0;
}

.edit_button {
	position: absolute;
	top: 12vh;
	right: -4vw;
	text-decoration: none;
	background: none;
	padding: 0;
}

.delete-icon-img, .edit_button img {
	width: 50px;  /* Adjust the size of the icon as needed */
	height: 50px;
	cursor: pointer;
	filter: invert(1);
	opacity: 0.5;
}

.delete-icon-btn {
	background: none;
	border: none;
}

.delete-icon-img:hover {
	opacity: 1;
}

.services-text {
	height: 100%;
	border-radius: 1vh;
	box-shadow: 1vh 1vh 1vh 1vh rgba(0, 0, 0, 0.8);
	background: rgba(0, 0, 0, 0.9);	
	padding: 2vh;

	font-size: 2.5vh !important;

	overflow-y: auto;
}

.fit-height {
	height: fit-content !important;
}

.service-icon {
	height: 40vh;
	border-radius: 1vh;
	box-shadow: 1vh 1vh 1vh 1vh rgba(0, 0, 0, 0.8);
	background: rgba(0, 0, 0, 0.9);	
}

.single {
	border-bottom: 0.25vh solid orange;
}

.single img {
	width: 50% !important;
	border: none !important;
	margin: auto;
	display: block;
}

.quint {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.triple {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}

.center {
	text-align: center;
}

.block {
	display: block;
}

.card {
	border: 0.25vh solid white;
	margin: 1vh;
	text-decoration: none;
	transition-duration: 0.3s;
	border-radius: 1vh;
	overflow: hidden;
}

.card:hover {
	border-color: red;
	cursor: pointer;
}

.card img {
	width: 100%;
}

.card p {
	text-align: left;
	padding: 0;
	padding-left: 8px;
	line-height: 1.25;
}

input, textarea {
	color: black;
	width: 100%;
	padding: 1vh;
	border-radius: 0.25vw;
}

input[type=submit] {
	background-color: #990000;
	border: none;
	text-align: center;
	cursor: pointer;
	color: black;
	transition-duration: 0.3s;
}

input[type=submit]:hover {
	filter: contrast(150%);
	color: white;
}

input[type=checkbox] {
	width: unset;
}

.dropdown a:hover {
	color: red;
	transition-duration: 0.3s;
}

/* scrollbar customization */
/* For Webkit browsers like Chrome, Safari */
::-webkit-scrollbar {
	width: 0.5vw;  /* Adjust width of the scrollbar */
}

::-webkit-scrollbar-track {
	background: black;  /* Background color of the track */
}

::-webkit-scrollbar-thumb {
	background: #990000;  /* Color of the moving scrollbar element */
}

::-webkit-scrollbar-thumb:hover {
	background: #dd0000;  /* Slightly different shade of orange when hovered */
}

.button {
	background: white;
	color: black;
	border-radius: 0.5vh;
	padding: 1vh;
	text-decoration: none;
	transition-duration: 0.3s;

	cursor: pointer;
	border: none;
	font-size: larger;
}

.button:hover {
	background: var(--red);
}

@media (orientation: portrait) {
	.mobile {
		display: none;
	}
}

@media (orientation: portrait) {
	.desktop, .dropdown-content {
		display: none !important;
	}

	h1 {
		font-size: 6vw;
	}

	header {
		display: flex;
		flex-direction: column;
		height: unset;
		position: unset;
	}

	.together {
		width: 100%;
		margin-bottom: 2vh;
	}

	.dropdown {
		height: 8vh;
	}

	.dropdown * {
		font-size: 5vw !important;
	}

	.parallax, .tall-para {
		height: fit-content !important;
		background-attachment: unset;
	}

	.section {
		padding-left: 2vw;
		padding-right: 2vw;
	}

	.deck, .quint, .triple {
		grid-template-columns: 1fr 1fr;
	}

	.profile, {
		grid-template-columns: 1fr;
		justify-items: center;
	}

	.twin, .home-twin {
		display: grid !important;
		grid-template-columns: 1fr;
		justify-items: center;
	}

	.profile img {
		width: 50vw;
	}

	footer {
		margin: 0;
		padding-left: 2vw;
		padding-right: 2vw;
	}

	form {
		padding-left: 2vw;
		padding-right: 2vw;
	}
	.post-container {
		width: 100vw;
	}

}

ul {
	padding-left: 24px;
	font-size: 22px;
	line-height: 1.25;
}





























