html {
	--colorBlue: #AEDAFF;
	--colorDarkBlue: #4B9DE6;
	--colorGreen: #D9D8A4;
	--colorDarkGreen: #666839;
	--colorRed: #F44444;
	--colorDarkRed: #7A3B38;
	--colorText: #000;
	--colorOffWhite: #FDFDFD;
	--borderRadius: 3px;
}

body {
	background-repeat: repeat;
	background-size: 1600px;
	background-color: var(--colorOffWhite);
	color: var(--colorText);
	font-family: 'IBMPlex Sans';
	margin: 0 auto;
	padding: 0;
	font-size: 16px;
	line-height: 1.5em;
	text-align: justify;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	background-attachment: fixed;
}

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

a:hover {
	text-decoration: underline;
}

sup {
	font-size: 0.8em;
	opacity: 0.8;
}

h1 sup,
h2 sup,
h3 sup,
h4 sup,
h5 sup {
	font-size: 0.3em;
	opacity: 0.6;
}

a.container,
a.container:hover {
	border: none !important;
	outline: none !important;
	text-decoration: none !important;
}

img {
	user-select: none;
}

h1 {
	margin: 20px 0;
	font-weight: normal;
	text-align: left;
	font-size: 3.5em;
	line-height: 1em;
	font-family: 'Nimbus Roman' !important;
}

h2 {
	font-weight: normal;
	text-align: left;
	font-size: 1.6em;
	line-height: 1em;
	font-family: 'Nimbus Roman' !important;
}

h3 {
	font-weight: normal;
	text-align: left;
	font-size: 1.4em;
	line-height: 1em;
	margin-bottom: 0;
	font-style: italic;
	font-family: 'Nimbus Roman' !important;
}

h3 span.date {
	display: block;
	font-size: 0.6em;
	font-style: normal;
	opacity: 0.8;
	font-variant: small-caps;
}

code {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.7em;
	padding: 2px 4px;
	border: 1px solid #EEE;
	text-align: left;
	display: block;
	margin: 20px 0;
	border-radius: var(--borderRadius);
}

ul {
	padding-left: 20px;
}

ul li {
	margin: 4px 0;
}

strong.monospace {
	font-family: 'JetBrains Mono', monospace;
}

span.boing {
	animation: boing 1s 0s ease-in-out infinite;
	position: absolute;
}

@keyframes boing {
	0% {
		transform: scale(1)
	}

	50% {
		transform: scale(1.2)
	}

	100% {
		transform: scale(1)
	}
}

span#latestRelease {
	color: var(--colorDarkGreen);
	font-weight: bold;
	font-family: 'JetBrains Mono', monospace;
}

div.main {
	width: 80%;
	max-width: 1000px;
	margin: 0 auto;
	display: block;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	background-color: rgba(255, 255, 255, 0.99);
	border: 3px solid #EEE;
	outline: 2px solid #FFF;
	border-top: none;
	border-bottom: none;
}

div.main::after {
	content: " ";
	display: block;
	height: 0;
	clear: both;
}

div.left {
	float: left;
	width: 30%;
}

div.left div.poseWrapper {
	height: 340px;
}

div.left img.pose {
	width: 90%;
	margin: 0 auto 20px auto;
	display: block;
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
}

div.menuMobileContainer {
	display: none;
}

div.left div.menuDesktop a {
	display: block;
	background: var(--colorOffWhite);
	border: 1px solid #DDD;
	font-weight: normal;
	text-decoration: none;
	width: 60%;
	margin: 10px auto;
	padding: 8px 10px;
	text-align: center;
	color: var(--colorText);
	font-size: 1.2em;
	font-family: 'Nimbus Roman' !important;
	transition: box-shadow 0.25s, transform 0.25s, background-color 0.25s, color 0.25s, border-color 0.25s;
	box-shadow: 0px 0px 0px #CCC;
	border-radius: var(--borderRadius);
}

div.left div.menuDesktop a:hover,
div.left div.menuDesktop a.menuCurrent {
	box-shadow: 0px 0px 10px #CCC;
	transform: scale(1.05);
	background-color: var(--colorGreen);
	color: var(--colorOffWhite);
	border-color: #EEE;
}

div.right {
	float: left;
	margin-left: 10px;
	width: 68%;
}

div.section {
	margin-bottom: 30px;
}

div.section div.infoBoxLeft,
div.section div.infoBoxRight {
	background-color: var(--colorOffWhite);
	border: 1px solid #FFF;
	padding: 0px 20px;
	font-size: 0.9em;
	line-height: 1.3em;
	color: var(--colorText);
	box-shadow: 0px 0px 5px #AAA;
	margin: 15px auto 0 auto;
	width: calc(100% - 40px);
	min-height: 120px;
	text-align: left;
	border-radius: var(--borderRadius);
}

div.section div.infoBoxLeft h3,
div.section div.infoBoxRight h3 {
	margin-top: 15px;
}

div.section div.infoBoxLeft img,
div.section div.infoBoxRight img {
	height: 100px;
	width: auto;
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
}

div.section div.infoBoxLeft img {
	float: left;
	margin: 10px 10px 10px 0;
	padding: 0 10px 0 0px;
}

div.section div.infoBoxRight img {
	float: right;
	margin: 10px 0px 10px 10px;
	padding: 0 0px 0 10px;
}

div.section img.littleIcon {
	width: 58px;
	height: auto;
	margin: 20px 10px 10px 5px;
	float: left;
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
}

div.section div.downloadLinks img {
	height: 55px;
	width: auto;
	margin: 0 10px;
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
	transition: filter 0.5s, transform 0.5s;
}

div.section div.downloadLinks img:hover {
	filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
	transform: scale(1.15);
}

div.section img.manualCover {
	filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.2));
	width: 80px;
	height: auto;
	float: left;
	margin: 20px 30px 5px 5px;
	transition: filter 0.5s, transform 0.5s;
}

div.section img.manualCover:hover {
	filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
	transform: scale(1.10);
}

div.bottom {
	margin: 60px 0 0px 0;
	font-family: 'JetBrains Mono';
	padding: 2px 5px;
	width: calc(100% - 20px);
	font-size: 0.6em;
	text-align: justify;
	line-height: 1.4em;
	color: #111;
	border-top: 1px solid #CCC;
}

div.bottom img.symbolicsoft {
	float: left;
	width: 40px;
	height: auto;
	margin: 0 25px 10px 0;
	position: relative;
	top: 9px;
}

div.gmapwrapper {
	position: relative;
	text-align: right;
	height: 300px;
	width: 100%;
	margin: 20px auto 20px auto;
	display: block;
	border: 4px solid var(--colorOffWhite);
	box-shadow: 0 0 5px #333;
	border-radius: var(--borderRadius);
}

iframe.gmapcanvas {
	overflow: hidden;
	background: none !important;
	height: 300px;
	width: 100%;
	border: none;
	overflow: hidden;
	margin: 0 auto;
	border-radius: var(--borderRadius);
}

img.discord {
	width: 150px;
	height: auto;
	display: block;
	margin-top: 10px;
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
}