html {
	scroll-behavior: smooth;
}

body {
	background-color: lightgrey;
	color: darkslategray;
	font-family: "Gill Sans", sans-serif;	
	line-height: 1.5em;
}

h1 {
	margin-bottom: 15px;
	background-color: #6e6966;
 	color: transparent;
 	text-shadow: 0px 2px 3px rgba(255,255,255,0.3);
  -webkit-background-clip: text;
     -moz-background-clip: text;
          background-clip: text;
  text-align: center; 
}

h1:hover { 
	color: dimgrey; 
}

h2 {
	margin-bottom: 5px;
	font-variant: small-caps;
	background-color: dimgrey;
  color: transparent;
 text-shadow: 0px 2px 3px rgba(255,255,255,0.3);
  -webkit-background-clip: text;
     -moz-background-clip: text;
          background-clip: text;
}

h3, h4 { 
	margin-bottom: 5px; 
}

h4 { 
	font-style: italic; 
}

p {	
	margin-top: 0px; 
}

h2:before {
	content: "\2711";
	margin-right: 5px;
}

.container {
	width: auto;
	height: auto;	
	padding: 15px;
	display: grid;
	grid-template-columns: auto;
	grid-template-rows: auto;
	grid-column-gap: 15px;
	grid-row-gap: 0px;
}

.div1 { grid-area: 1 / 1 / 2 / 3; }
.div2 { grid-area: 2 / 1 / 3 / 2; }
.div3 { grid-area: 2 / 2 / 3 / 3; }
.div4 { grid-area: 3 / 1 / 4 / 3; }


.sub {
	color: whitesmoke;
	font-style: italic;
	text-shadow: 1px 1px black;
	text-align: center;
}

.L {
	float: left;
	margin-left: 0px;
	margin-right: 25px;
}

figure {
	float: right;
	margin-right: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	color: darkcyan;
	padding: 25px;
	font-variant: small-caps;
	text-shadow: 0px 0px 15px darkcyan;
}

div {
  height: auto;
  width: auto;
}

img { 
  height: auto;
  width: auto;
  position: static;
  box-shadow: 0px 0px 35px 0px whitesmoke;
}

img:hover { 
	box-shadow: 0px 0px 35px 0px darkcyan; 
}

.header-bg {
	width:  auto;
	height: 110px;
	background-image: url("../images/newspaper.jpg");
	background-size: cover;
	background-position: center; 
	padding: 15px;
	box-shadow: inset 0px 0px 25px 15px lightgrey;
}

footer {
	color: black;
	text-shadow: 1px 1px whitesmoke;
	background-image: url("../images/footer.jpg");
	background-size: cover;
	padding: 15px;
	box-shadow: inset 0px 0px 50px 25px lightgrey;
} 

li { 
	list-style-type: circle; 
}

li:hover { 
	text-decoration: underline;
}

.list li { 
	list-style-type: none; 
}

.list li:hover {
	color: darkcyan;
	text-decoration: none;
}

.list li:before {
	content: '\2712';
	margin-left: -20px;
	margin-right: 10px; } 

a:link {
	color: saddlebrown;
	text-decoration: none;
}

a:visited { 
	color: darkcyan; 
}

a:hover { 
	color: rosybrown; 
}

em:hover {
	color: rosybrown; 
}

table {
	color: black;
	width: 100%;
	text-align: center;
	background-image: url("../images/footer.jpg");
	background-size: cover;
	padding: 15px;
	box-shadow: inset 0px 0px 50px 25px lightgrey;
}

th {
	text-decoration: underline;
	text-shadow: 1px 1px whitesmoke;
	font-variant: small-caps;
	font-size: x-large;
	padding: 10px;
}

td {
	padding: 5px; 
}

td:hover { 
	color: darkcyan;
	box-shadow: 0px 0px 15px whitesmoke;
	border-radius: 25px; 
	text-shadow: 1px 1px whitesmoke;
}

caption {
	font-size: 1.2em;
	font-style: italic;
}