@import url('https://fonts.googleapis.com/css2?family=Squada+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira+Semi+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');


:root {
	--grey: #777;
	--light-grey: #AAA;
	--lighter-grey: #DDD;

	--link-highlight: #FFF;

	--light-green: rgb(134, 239, 195);
	--retro-purple: #822692;
}

html {
	width: 100%;
	height: 100%;
}

body {
	height: 100%;

	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: stretch;

	background-color: #161319;
	padding: 0px;
	margin: 0px;

	font-family: 'Saira Semi Condensed';
	font-size: 16px;
	color: var(--light-grey);
}

#container {
	max-width: 800px;
	flex: 1 0;
	
	display: flex;
	flex-flow: column nowrap;
	
	padding: 0px;
	
	/* border: 1px solid #333; */
}

#header {
	display: flex;
	flex: 0 0;
	flex-basis: auto;
	flex-flow: row nowrap;
	
	height: 160px;
	align-items: start;
	
	background-image: url(images/header_background.png);
	background-repeat: no-repeat;

	cursor: default;
}

@media screen and (max-width: 800px) {
	#container {
		max-width: 100%;
	}

	#header {
		background-size: contain;
	}
}

#title_box {
	position: absolute;
	width: 100px;
	height: 120px;
	margin-top: 25px;
	/* border: 1px solid red; */
}

#nav {
	flex: 1 0;
	text-align: right;
	color: var(--light-green);

	font-weight: bold;
	font-size: 20px;
	
	padding: 8px 30px 0px 0px;
}

.social {
	display: inline-block;

	background-size: cover;

	width: 16px;
	height: 16px;
	/* margin-top: 16px; */
	/* margin-left: 10px; */

	background-position: top;
}

.social:hover {
	background-position: bottom;
}

#bsky {
	background-image: url(images/social_bsky2.png);
}

#twit {
	background-image: url(images/social_twit2.png);
}

#linkedin {
	background-image: url(images/social_linkedin2.png);
}

#nav a {
	text-decoration: none;
	margin-left: 3px;
	margin-right: 6px;

	font-family: 'Squada One';
	font-size: 18px;
	font-weight: normal;
}

#nav a:link, a:visited, a:active {
	color: var(--link-highlight);
	text-shadow: 3px 3px black;
}

#nav a:hover {
	color: var(--light-green);
}

#content {
	padding: 0px 30px 0px 30px;

	line-height: 180%;

	/* text-align: justify; */
}

#content h1 {
	font-family: 'Squada One';
	font-size: 30px;
	color: var(--light-green);
	text-shadow: 4px 4px black;

	margin: 40px 0px 10px 0px;
	padding: 0px 0px 16px 0px;
}

#content h2 {
	font-family: 'Squada One';
	font-size: 26px;
	color: var(--light-green);
	text-shadow: 3px 3px black;

	margin: 0px 0px 0px 0px;
	padding: 0px 0px 20px 0px;
	/* border-bottom: 1px dotted white; */
}

#content h3 {
	font-family: 'Squada One';
	font-size: 20px;
	color: white;
	text-shadow: 2px 2px black;

	margin: 0px;
	padding: 0px 0px 10px 0px;
}

#content .front {
	text-align: center;
}

#content p {
	margin: 0px 16px 16px 16px;
	/* padding: 0px; */
}

#content a {
	text-decoration: none;
}

#content a:link {
	color: var(--link-highlight);
}

#content a:hover {
	color: var(--light-green);
}

#content img.project_preview {
	max-width: 100%;
	display: block;
	margin: 16px auto 16px auto;
}

.screenshot {
	max-width: 100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.img_label {
	font-size: 0.85em;
	font-style: italic;
	text-align: center;
}

#content .pullout {
	width: 100%;
	font-size: 1.35em;
	font-style: italic;
	color: var(--light-green);
	text-align: center;
	padding: 16px 0px 16px 0px;
	line-height: 200%;
}

.gallery {
	width: 100%;
	/* height: 100px; */
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

.gallery_item {
	flex: 0 1 auto;
	align-self: center;
	max-height: 100px;
	padding: 10px;
}

.platform_logo {
	max-height: 16px;
	padding: 8px;
}

#content pre {
	font-size: 14px;
	font-family: 'Saira Semi Condensed';
	color: var(--light-green);
	/* background-color: #222; */
	background-color: #201c24;

	margin: 32px 00px 32px 0px;
	padding: 12px;
	border-left: 1px dashed white;
	border-right: 1px dashed white;

	overflow-x: scroll;
	scrollbar-color: var(--light-grey) #151217;
}

#footer {
	color: #444444;
	flex: 0 1;

	font-size: 12px;
	text-align: center;

	padding: 10px 0px 10px 0px;
}