/* site.css */
header {
  background-color: white;
  border: solid 10px black;
  /*font-family: 'Times New Roman', serif;*/
}

footer {
  padding: 2px;
  border: solid 5px black;
  border-radius: 3px;
}

body {
  font-family: Segoe UI, Arial, Helvetica, sans-serif;
  font-size: 18px;
  background-color: blue;
}

a {
  color: blue;
}

html, body {
  padding: 0;
  margin: 0;
}

h1 {
  text-align: center;
  font-size: 30px; 
}

h2 {
  display: inline-block;
  margin-left: 25px;
  font-size: 20px;
}

h3, h4, p, address {
  text-align: center;
  font-size: 20px;
}

.bordered-image {
  margin-top: 20px;
  box-shadow: 2px 2px 40px 2px black;
}

#main {
  border: solid 1px #ccc;
  border-radius: 5px;
  color: #202020;
  margin: 20px 0;
  padding: 5px;
}

.container {
  width: 80%;
  margin: 0 auto;
  background-color: white;
  padding: 10px;
  box-shadow: 2px 2px 65px 10px black;
}

header nav {
  float: right;
  margin-right: 25px;
}

header nav li {
  display: inline-block;
  font-size: 20px;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}










