html {
	font-family: jetbrains-mono;
	flex-direction: column;
}

.page-title {
	color: black;
	font-size: 2vw;
	border-style: solid;
	border-width: 0px;
	border-bottom-width: 4px;
	border-color: black;

	display: flex;
	justify-content: center;
	align-items: center;

	padding-top: 46px;
	padding-bottom: 46px;

	background-image: url("/assets/test_background_image.png");
}

#silicat {
	margin-right: 25px;
	margin-left: 25px;
	
	width: clamp(0px, 8vw, 128px);
	height: clamp(0px, 8vw, 128px);
}

.header-text {
	color:ivory;
	mix-blend-mode: difference;
	
	display: flex;
	justify-content: center;
	
	margin-top: 0px;
	margin-bottom: 0px;

	transition-property: opacity;
	transition-duration: 1s;
}

.header-text.small-text {
	opacity: 0%;
	font-size: 25px;
}

.header-text.small-text.small-text-visible {
	opacity: 100%;
}

.page-container {
	display: flex;
	flex: 1;
}

.menu {
	flex: 1;
	display: flex;
	flex-direction: column;
	background: lightslategray;
	max-width: 300px;
	min-width: 150px;
	min-height: 100vh;
}

.menu-links {
	color: blue;
	margin-top: 5px;
	text-decoration: none;
	margin-left: 16px;
}

.menu-links:hover {
	color: darkblue;
	margin-left: 22px;
}

.menu-txt {
	margin-top: 20px;
	margin-left: 10px;
}

.page {
	flex: 3;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
	background: lightgray;
}

.silly-dog {
	margin-top: auto;
	display: flex;
	justify-content: center;
}

#content {
	background: lightgray;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;

	margin-left: 8px;
	margin-right: 8px;

	max-width: 600px;
}

table {
	margin-top: 6px;
}

td {
	padding-left: 6px;
	padding-right: 6px;
}

table, th, td {
	border-color: black;
	border-width: 1px;
	border-style: solid;
}
