/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
   /* 
   Background: #E6F8FF
   Really dark: #00131A (text)
   Headings: #003447
   banners: #003447
   banner text: #B8ECFF
   links: #005675*/

h1, h2{
  color: #003447;
}

p {
  margin-bottom: 10px;
}

body {
    background-color: #E6F8FF;
    color: black;
    font-family: Verdana;
    font-size: small;
    line-height: 1.6;
}

.topbanner {
  background-color: #003447;
  font-size: medium;
  min-height: 80px;
  width: 100%;
  overflow-x: clip;
  text-align: center;
  color: #B8ECFF;
}

.bottombanner {
  background-color: #003447;
  font-size: small;
  color: #B8ECFF;
}

.mainbody {
  width: 48%;
  /*background-color: #E6F8FF;*/
  float: left;
  padding: 1%;
  margin: 1%;
  border-radius: 6px;
}

.text{
  margin: auto;
  max-width: 600px;
}

.mainbody:p {
  color: #00131A;
}

quote {
    color: #005675;
    font-style: italic;
}

.mainbody:h1, .mainbody:h2, .mainbody:h3 {
  color: #003447;
}

.leftcolumn {
  width: 20%;
  float: left;
  background-color: #0099D1;
  padding: 1%;
  margin: 1%;
  border-radius: 6px;
}

.rightcolumn {
  width: 20%;
  float: right;
  background-color: #0099D1;
  margin: 1%;
  padding: 1%;
  border-radius: 6px;
}

a {
  color: #005675;
}

.column {
  float: left;
  width: 50%;
  padding: 10px;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.mytable {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  color: black;
  border-bottom-width: 2px;
  border-bottom-color: #003447;
  border-bottom-style: solid;
}

.mytable td, .mytable th {
  border-left-width: 2px;
  padding: 3px;
  border-left-color: #003447;
  border-left-style: solid;
  border-right-width: 2px;
  border-right-color: #003447;
  border-right-style: solid;
}

.mytable th {
  background-color: #003447;
  color: white;
}