﻿

body {
  background-color: antiquewhite;
  font-family: "Merriweather", serif;
  margin: 0;
  padding: 0;
}
h1,h2{
	font-family: "Sancreek", serif;
	color: #240202;
}

.sitecontainer{
	display: flex;
	height: 100%;
}
.sidebar{
	height: 100%;
	background-color: burlywood;
	padding: 10px;
	text-align: center;
}
.sidebar a{
	font-size: 20px;
	padding: 6px 16px;
	text-decoration: none;
	color: #895d2c;
	padding-bottom: 10px;
	display: flex;
	justify-content: center;
}
.sidebar a:hover {
  color: antiquewhite;
  background-color: #240202;
}

.main-container{
	height: 100%;
	overflow-y: scroll;
	padding-left: 20px;
	padding-right: 20px;
	text-align: center;
}
.image-container {
  display: flex;            /* Enables Flexbox layout */
  justify-content: center;   /* Centers the images horizontally */
  gap: 10px;                /* Adds space between images */
}

.image-container img {
  width: 30%;               /* Adjusts width so they fit on one line */
  height: auto;
}
.sidebyside {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}