:root {
	--black				: #251f40;
	--white				: #fff2f7;
	--blue				: #a3c8ff;
}

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

html {
	font-size			: 24px;
}

body {
	margin				: 0px;
	padding				: 0px;
	font-family			: "ftmono";
	background-color	: var(--black);
	color				: var(--white);
}

a {
	color				: var(--blue);
	text-decoration		: none;
}

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

header {
	width				: 100%;
	top					: 0%;
	background-color	: rgba(125, 125, 125, 0.25);
}

header > h1 {
	padding-left		:	5%;
}

footer {
	padding				: 0px;
	margin				: 0px;
	position			: fixed;
	width				: 100%;
	bottom				: 0%;
	height				: 5%;
	color				: var(--blue);
	background-color	: rgba(125, 125, 125, 0.25);
}

footer > p {
	padding-left		: 5%;
}

menu {
	position			: fixed;
	top					: 15%;
	width				: 10%;
	height				: 80%;
	padding				: 0px;
	margin				: 0px;
}

menu > li {
	display				: list-item;
	margin-left			: 1em;
	list-style-position	: inside;
	list-style			: disc;
}

menu > li:hover {
	color				: var(--blue);
	display				: list-item;
	margin-left			: 1em;
	list-style-position	: outside;
	list-style			: square;
	cursor				: pointer;
}

main {
	overflow			: scroll;
	scrollbar-width		: none;
	position			: fixed;
	left				: 10%;
	top					: 15%;
	width				: 80%;
	height				: 80%;
	margin				: 0px;
	padding				: 0px;
}

main > h2 {
	color				: var(--blue);
	margin				: 2%;
}

main > h3 {
	color				: rgb(255, 153, 102);
}


main > h4 {
	color				: rgb(230, 230, 0);
}

main > article {
	position			: fixed;
	left				: 10%;
	top					: 20%;
	width				: 40%;
	height				: 80%;
	margin				: 0px;
	padding				: 2%;
}

article > pre {
	width				: 90%;
}

img {
	position			: fixed;
	bottom				: 0%;
	right				: 5%;
}

.hljs {
	border-radius		: 10px;
	border-color		: var(--white);
	border-style		: solid;
	border-width		: 1px;
}

input {
	color				: var(--white);
	width				: 80%;
	outline				: none;
	border-radius		: 5px;
	border				: none;
	padding				: 10px;
	background-color	: rgba(125, 125, 125, 0.25);
}

button {
	color				: var(--white);
	width				: 10%;
	border				: none;
	border-radius		: 5px;
	padding				: 10px;
	background-color	: rgba(125, 125, 125, 0.25);
}

table {
    width				: 100%; /* Full width */
    border-collapse		: collapse; /* Merge borders */
    margin				: 20px 0; /* Space above and below the table */
}

th {
    padding				: 12px; /* Padding inside header cells */
    text-align			: left; /* Align text to the left */
    border-bottom		: 2px solid; /* Bottom border for header */
}

td {
    padding				: 10px; /* Padding inside data cells */
    border-bottom		: 1px solid; /* Bottom border for data cells */
}

code {
    display				: inline-block;
    padding				: 2px 4px;
    font-family			: monospace;
	font-weight			: bold;
	color				: var(--blue);
    background-color	: #333; /* Light gray background */
    border-radius		: 3px; /* Slightly rounded corners */
}
