.menu {
	overflow: hidden;
	background-color: rgb(0,0,0,.7);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1;
	
}

.main {
	margin-top: 70px;
}

body {
	background-image: url("https://www.scribblehousepgh.com/bg.jpg");
	font-size: 100%;
}

h1 {
	font-size: 2.5em;
	font-weight: bold;
}

h2 {
	font-size: 1.5em;
	font-weight: bold;
}

table.content {
	border-spacing: 0;
	border-collapse: separate;
	border-radius: 10px;
	border: 4px solid black;
	background-color: rgb(255,255,255,.9);
	width: 70%;
}

table.content td {
	font-family: Garamond, Georgia, Times, Serif;
	font-color: #3C3C3C;
	font-size: 1.2em;
	padding: 15px;
	text-align: left;
}

#image a:hover, a:active, a:link, a:visited {
	text-decoration: none;
	background-color: none;
}

.spaced-image {
  margin: 20px; 
  float: left;  
}

.main a:link, a:visited {
	color: #C90613;
	text-decoration: none;
}

.main a:hover, a:active {
	color: #ed0212;
	text-decoration: none;
	background-color: #FFF1AD;
}

.button {
  background-color: #CCCCCC;
  border: 2px solid #C90613;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
}

.button:visited {
	color: white;
	text-decoration: none;
	background-color: #CCCCCC;
}

.button:hover {
	color: #ed0212;
	text-decoration: none;
	background-color: #FFF1AD;
}

  /*  Rollover image styles  */
  .figure {
    position: relative;
    width: 255px; /* can be omitted for a regular non-lazy image */
    max-width: 100%;
  }
  .figure img.Sirv.image-hover {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    object-fit: contain;
    opacity: 0;
    transition: opacity .2s;
  }
  .figure:hover img.Sirv.image-hover {
    opacity: 1;
  }

.accordion {
	width: 1150px;
	margin: 10px auto;
	color: #333333;
	background-color: #CCCCCC;
	padding: 0px 0px;
}

.accordion .container {
	position: relative;
	margin: 10px 10px;
}

.accordion .label {
	position: relative; 
	padding: 10px 0;
	font-size: 1.5em;
	color: #333333;
	cursor: pointer;
}

.accordion .label::before {
	content: '+';
	color: #333333;
	position: absolute;
	top: 50%;
	right: -5px;
	font-size: 30px; 
	transform: translateY(-50%);
}

.accordion .content {
	position: relative;
	background: rgb(255,255,255,.85);
	height: 0;
	font-family: Garamond, Georgia, Times, Serif;
	font-color: #3C3C3C;
	font-size: 1em;
	text-align: justify;
	width: 1125px;
	overflow: hidden;
	transition: 0.5s;
}

.accordion hr {
	width: 1000px;
	margin-left: 0;
	border: 1px #333333;
}

.accordion .container.active .content {
	height: 100%;
}

.accordion .container.active .label::before {
	content: '-';
	font-size: 30px;
}
