/* site.css */
header, footer {
  background-color: navy;
  font-family: sans-serif;
  color: white;
  padding: 15px;
}

footer {
  padding: 10px;
  font-family: serif;
  position:absolute;
  bottom:0;
  width:16%;
  height:8px;
  text-align: left;
}

body {
  font-family: serif;
  font-size: 18px;
  background-color: navy;
  color: white;
  width: 98%;
}

a {
  color: rgb(210, 23, 29);
}

html, body {
  padding: 0;
  margin: 0;
}

/*Flightflight 1, & Josh CrozierJosh Crozier 156k35275224. (n.d.). How do I *really* justify a horizontal menu in HTML CSS? 
Retrieved from https://stackoverflow.com/questions/49536/how-do-i-really-justify-a-horizontal-menu-in-htmlcss*/

ul {
  list-style-type:none;
  font-family: palatino;
  font-size: 20px;
  float: center;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 10px;
}

li a:hover {
  background-color: gray;
  color: white;
}

#menu ul{
  list-style: none;
}

#menu li{
  display: inline;
  display: block;
  flex: 0 1 auto;
  list-style-type: none;
}

.logo {
  font-family: palatino;
  color: rgb(210, 23, 29);
  font-size: 48px;
  font-style: bold;
  text-align: center;
  width: 102%;
  padding-bottom: 5px;
  border-bottom: 3px solid white;
}

.main {
  color: white;
  margin: 20px 0;
  padding: 15px;
  position: absolute;
  top: 85px;
  text-align: center;
}

.pagetitle {
  font-size: 30px;
  color: rgb(210, 23, 29);
  padding-top: 8px;
  border-top: 3px solid white;
  padding-left: 15px;
  padding-right: 15px;
}

.floated-image1 {
  float: left;
  width: 200px;
  margin: 10px;
  padding: 3px;
  border: 3px solid white;
}

.floated-image2 {
  float: right;
  width: 200px
  margin: 10px;
  padding: 3px;
  border: 3px solid white;
}

.video1 {
  float: center;
}

.table {
  text-align: center;
}








