@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;
}

.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;
}

.linkflag {
	text-decoration: none;
}

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

.langlist {
	text-align: center;
	flex-direction: row
}

.langlink {
	color: #179ab7ff;
	padding: 30px;
	width: 150px;
	border-width: 1px;
	border-color: #1c1c1c;
	border-style: solid;
	border-radius: 15px;
	text-decoration: none;
	text-align: center;
	background: linear-gradient(180deg, #111 0%, #000 50%, #222 100%);
	display: inline-block;
}

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

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);
}
