body {
	line-height: 1;
	background-color: black;
	text-align: center;
	font-family: 'UnifrakturCook', serif;
	color: black;
	font-size: 95%;
}

@font-face {
  font-family: 'ImpactLabelReversed';
  src: url('fonts/ImpactLabelReversed.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'OldNewspaperTypes';
  src: url('fonts/OldNewspaperTypes.woff2') format('woff2');
  font-display: swap;
}

p {
	font-size: 100%;
	line-height: 125%;
	padding: 10px 20px;
	background-color: pink;
	outline: 2px solid black;
	margin: 15px auto;
	width: 50%;
}

h1 {
    color: white;
}

h2 {
    color: white;
    font-family: "ImpactLabelReversed";
}

i {
    color: white;
}

p a {
	color: black;
	text-decoration: none;
}
p a:hover {
	color: purple;
	text-decoration: underline;
}

ul {
	font-size: 110%;
	font-family: Verdana, sans-serif;
	line-height: 125%;
	padding-right: 50px;
	padding-left: 50px;
	background-color: pink;
	outline: 2px solid red;
}

.myClass {
	text-align: left;
	outline: 2px purple dashed;
}
.mono {
  font-family: monospace;
}

.img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
  justify-items: center;
  padding: 0;
  margin: 0 auto;
}

.img-grid img {
  width: 80%;
  max-width: 150px;
  height: auto;
  margin: 0 !important;
  object-fit: cover;
  display: block;
}

.img-grid {
  width: 50%;
  margin: 0 auto;
}

/* Optional: Style images to fit nicely */
img {
	margin: 10px;
	max-width: 100%;
	height: auto;
}
.home-icon-button {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  background-color: black;
  color: white;
  font-size: 18px;
  width: 60px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  text-decoration: none;
  font-family: 'UnifrakturCook', serif;
  transition: background-color 0.3s, color 0.3s;
  box-sizing: border-box;
}

.home-icon-button:hover {
  background-color: red;
  color: white;
  text-decoration: none;
}

.f-button {
  display: inline-block;
  margin: 30px auto 10px;
  padding: 10px 20px;
  background-color: black;
  border: 2px solid white;
  color: white;
  font-family: 'UnifrakturCook', serif;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.f-button:hover {
  background-color: red;
  color: white;
  text-decoration: underline;
}
.img-grid .f-button {
  width: 50%;
  text-align: center;
  margin: 20px auto;
  font-size: 100%;
}
.side-by-side {
  display: flex;
  align-items: flex-start; /* aligns children top edges */
  gap: 20px;
  width: 90%;
  margin: 30px auto;
  flex-wrap: wrap;
  text-align: left;
}

.side-by-side p {
  flex: 1 1 50%;
  background-color: pink;
  outline: 2px solid black;
  padding: 20px;
  font-family: monospace;
  margin: 0;
}
.side-by-side {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 53%;
  margin: 30px auto;
}

.box {
  flex: 1 1 25%;
  background-color: pink;
  outline: 2px solid black;
  padding: 20px;
  font-family: 'OldNewspaperTypes', serif;
  font-size: 90%;
  box-sizing: border-box;
}
.box a {
	color: black;
	text-decoration: none;
}
.box a:hover {
	color: purple;
	text-decoration: underline;
}
.side-image {
  flex: 0 0 auto;
  width: 200px;
  max-width: 100%;
  height: auto;
  border: 2px solid black;
  align-self: flex-start;
  margin-top: 20px; /* matches paragraph padding-top */
}

html, body {
  height: 100%;
  margin: 0;
  position: relative;
  overflow-x: hidden;
}

