@font-face {
	font-family: "B612";
	src: url("./B612-Regular.ttf");
}

:root {
    --mcdu-cyan: #00ffff;
    --mcdu-amber: #ffa500;
    --mcdu-green: #00ff00;
    --mcdu-yellow: #ffff00;
    --mcdu-magenta: #ff00ff;
    --mcdu-red: #ff0000;
    --mcdu-gray: #888;
    color-scheme: dark;
}

html {
	scrollbar-width: none;
	min-height: 100vh;
}

/* Hide Scrollbar on Webkit based browsers */
body::-webkit-scrollbar {
	display: none;
}

body {
	font-family: "B612";
	background-color: #000000;
	color: #ffffff;
	margin: 0px;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.content {
	padding: 40px;
	align-content: flex-start;
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
}

a:link {
	color: var(--mcdu-cyan);
}

a:active, a:visited, a:hover {
	color: var(--mcdu-green);
}

nav {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom-width: 3px;
	border-bottom-color: #888;
	border-bottom-style: solid;
	background: linear-gradient(180deg, #111 0%, #000 50%, #222 100%);
	vertical-align: middle;
}

.linkflag {
	text-decoration: none;
}

.menuitem {
	color: var(--mcdu-cyan);
	padding: 15px;
	margin: 0px;
	border-right-width: 1px;
	border-right-color: #888;
	border-right-style: solid;
	text-decoration: none;
}

.menuitem:hover {
	background: linear-gradient(180deg, #333 0%, #000 50%, #444 100%);
}

.menulogo {
	height: 40px;
	margin-top: -15px;
	margin-bottom: -15px;
	margin-left: -10px;
	margin-right: 10px;
}

.logo {
	max-height: 50vh;
}

main {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	gap: 2em;
	font-size: 1.2em;
/*	max-width: 800px;*/
}

.container {
	display: flex;
	gap: 5px;
	padding: 2rem;
        flex-wrap: wrap;
        list-style: none;
        align-content: flex-start;
        justify-content: center;
}

.centerImage {
	max-width: 75vw;
	border-color: #888;
	border-style: solid;
	border-width: 3px;
}

.infoCardContainer {
	display: grid;
	grid-template-columns: 50% 50%;
	gap: 2em;
	width: 800px;
}

.infoCard {
	border: 1px solid #888;
	padding: 1.5em;
	border-radius: 35px;
	background: linear-gradient(180deg, var(--mcdu-green), #111 5%, #111 98%, var(--mcdu-cyan));
}

.infoCard:hover {
	background: linear-gradient(180deg, var(--mcdu-green) 5%, #111 15%);
	border-color: var(--mcdu-green);
}

.infoCardGray {
	border: 1px solid #888;
	padding: 1.5em;
	border-radius: 35px;
	background: linear-gradient(180deg, var(--mcdu-gray), #111 5%, #111 98%, var(--mcdu-cyan));
}

.infoCardGray:hover {
	background: linear-gradient(180deg, var(--mcdu-gray) 5%, #111 15%);
}

footer {
	min-width: 100vw;
	min-height: 100%;
	border-top-width: 3px;
	border-top-color: #888;
	border-top-style: solid;
	flex-shrink: 0;
}

code {
	background-color: #222;
	color: var(--mcdu-green);
}
