@font-face {
	font-family: "CustomFont";
	src:url("fonts/GenZenGothic.ttf") format("truetype"),
		url("fonts/GenZenGothic.woff") format("woff");
}
body {
	background: black;
	color: white;
	font-family: "CustomFont", Arial, sans-serif;
	display: flex;
	justify-content: center;
	margin: 40px;
	flex-wrap: wrap;
	flex-direction: row;
	align-content: center;
	text-align: center;
}

.page-container {
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	display: flex;
	border: 2px solid white;
	padding: 10px;
	max-width: 900px;
}
.top-image-container img {
	columns: auto;
	max-width: 870px;
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

/* Left buttons */
.button-stack {
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-right: 20px;
	
}

.button {
	background: black;
	color: white;
	border: 1px solid white;
	padding: 5px 10px;
	cursor: pointer;
	font-size: 12px;
	text-align: center;
}

.side-content {
margin-right: auto;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-left: auto;
    max-width: 150px;
    align-items: center;
}

.button a {
	color: white;
	text-decoration: none;
}

.button:hover {
	background: #004e9a;
	color: black;
}

/* Middle text box */
.main-content {
	height: auto;
    width: 500px;
    max-height: 590px;
    overflow-y: scroll;
    margin-top: 15px;
    border: 1px solid white;
    padding: 15px;
    margin-right: 20px;
    max-width: 600px;
}
.main-content img {
 max-width: 100%;
 height: auto;
}
.main-content h1 {
	font-size: 18px;
	margin: 0;
	font-weight: bold;
}

.main-content p {
	font-size: 13px;
	margin-top: 10px;
	line-height: 1.4;
}

/* Right column */
.side-content img {
	display: block;
	max-width: 120px;
	border: 0;
}

.side-content small {
	display: block;
	margin: 10px 0;
	font-size: 12px;
}

textarea {
	width: 120px;
	height: 40px;
	font-size: 10px;
	background: black;
	color: white;
	border: 1px solid white;
	resize: none;
	margin-bottom: 5px;
}

h1 {
	font-size: 35px;
	margin: 2;
}
h2 {
	font-size: 25px;
	margin: 2;
}
h3 {
  	font-size: 15px;
	margin: 2;
	font-weight: bold;
}
hr {
color: white;
width: auto;
}
ul {
	padding-left: 20px;
	margin: 10px 0;
}
li {
	margin-bottom: 5px;
}
p {
	font-size: 13px;
	margin-top: 15px;
	line-height: 15px;
}
small {
	color: gray;
	font-size: 10px;
}

footer {
  color: #fff;
margin: 5px;
text-align:left;
}

.auto {
  margin: 5px;
  width: auto;
}

/* unvisited link */
a:link {
  color: white;
}

/* visited link */
a:visited {
  color: #004e9a;
}

/* mouse over link */
a:hover {
  color: gray;
}

/* selected link */
a:active {
  color: #004e9a;
}

/* Using a class for specific text */
.highlight {
  background-color: #004e9a; /* Or any other color */
}

/* Highlighting all content within a <mark> tag */
mark {
  background-color: #004e9a /* Default is usually yellow */
}