@import url('https://fonts.googleapis.com/css2?family=VT323&family=Bungee&display=swap');

margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* slightly enhanced, universal clearfix hack */
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */

html {
	background-color: #fff8e1;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'VT323', monospace;
	color: #062940;
	line-height: 1.6;
	padding: 20px;
	background-color: #fff8e1;
}

#page-wrap {
	width: 1000px;
	margin: 50px auto;
}

/* Header */
header {
	text-align: center;
	margin-bottom: 2rem;
	background-color: #ffbe0b;
	padding: 20px;
}

header h1 {
	font-family: 'Bungee', cursive;
	font-size: 3rem;
	margin: 0;
	color: #062940;
}

header p {
	font-size: 1rem;
	color: #062940;
}

/* Nav */
nav {
	width: 100%;
	height: 50px;
	margin: 30px auto;
	background-color: #ffbe0b;
	font-weight: bold;
}

nav ul {
	display: flex;
	justify-content: center;
	list-style-type: none;
	margin-bottom: 2rem;
	gap: 2rem;
	width: 800px;
	margin: auto;
	font-size: 2em;
}

nav ul li {
	float: left;
	text-align: center;
	width: 100%;
	line-height: 50px;
	background-color: #ffbe0b;
	font-weight: bold;
}

nav a {
	text-decoration: none;
	color: #fb5607;
	font-weight: bold;
}

nav a:hover {
	text-decoration: underline;
}

/* Main content */
main {
	width: 60%;
	float: right;
	border-left: 4px ridge #8338ec;
	padding-left: 50px;
}

aside {
	width: 30%;
}

main img {
	width: 50%;
	float: right;
	margin: 0 0 30px 30px;
	box-shadow: 5px 5px 5px rgba(0,0,0,.5);
}

h2 {
	font-size: 1rem;
	margin-bottom: 1rem;
	color: #062940;
}

section {
	margin-bottom: 3rem;
}

section h3 {
	font-family: 'Bungee', cursive;
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: #fb5607;
}

section .prompt {
	font-style: italic;
	margin-bottom: 1rem;
	color: #555;
}

figure {
	text-align: center;
	margin: 1rem 0;
}

figure img {
	max-width: 100%;
	height: auto;
	border: 1px solid #ccc;
}

figcaption {
	font-size: 0.9rem;
	color: #555;
	margin-top: 0.5rem;
}
.link-orange {
  color: #fb5607;
}

.regular-text {
  color: #062940;
}
.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Full height of the viewport */
}

.page-container > *:not(footer) {
  flex: 1;
}

footer {
  background-color: #ffbe0b;
  text-align: center;
  padding: 1rem;
  font-family: 'VT323', monospace; 
  font-size: 1.2rem;
  color: #062940;
}

footer a {
  color: #062940; /* blue to show it's clickable */
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}
/*end of css/*