@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');

body, html {
	padding: 0;
	margin: 0;
	font-size: 13px;
	background: #164031;
	color: silver;
	font-family: 'Source Code Pro', monospace;
}

img {
	max-width: 100%;
}

.page {
	padding: 24px;
}

.page h1:first-child {
	margin-top: 0;
}

.header-image {
	height: 200px;
	margin: auto;
	display: block;
}

.wrapper {
	margin: auto;
	margin-top: 24px;
	width: 753px;
}

.menu {
	text-align: center;
	margin-bottom: 24px;
	margin-top: 24px;
}

.menu a {
	color: white;
}

.main {
	height: 480px;
	width: 753px;
	background-image: url('bg.jpg');
	position: absolute;
}

.main iframe {
	border: none;
	border: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 739px;
	height: 3000px;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 12px;
}

h1 {
	border-bottom: 1px solid black;
}

h2 {
	border-bottom: 1px solid black;
}

h3 {
	border-bottom: 1px solid black;
}

h4 {
	border-bottom: 1px solid black;
}

h5 { 
	border-bottom: 1px solid black;
}

h6 {
	border-bottom: 1px solid black;
}

a {
	color: white;
}

/***
EZ Gallery by netfriend - https://netfriend.neocities.org/ez-gallery/
Released under the Unlicense - https://unlicense.org/
***/

.ezgallery.horizontal { 
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.ezgallery.horizontal img {
  flex: auto;
  margin: 0 5px 5px 0;
  object-fit: contain;
  object-position: center;
}

.ezgallery.horizontal { 
  display: grid;
  grid-gap: 5px;
  gap: 5px;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  grid-auto-rows: minmax(100px, auto);
}

.ezgallery.horizontal a {
  text-align: center;
}

.ezgallery.horizontal img {
  text-align: center;
  vertical-align: middle;
  margin: 0 5px 5px 0;
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  object-position: center;
}