body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.25;
  background-color: #1a313d;
  color: white;
  margin:1% 12%;
}

table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width:100%;
  table-layout: fixed;
}

 h3 {
  font-size: 1.5em;
  margin: .7em 0 1.5em 0.2em;
  float: left;
  background: #27414f;
  padding: 10px;
  border-radius: 2px;
}

 a.promo {
  margin: 1.7em 0 1.5em 0.2em;
  float: right;
  padding: 5px;
  border-radius: 2px;
  color: #e9d848;
  text-decoration: none;
  font-weight: 10;
}

 .footer{
  background: #27414f;
  padding: 10px;
  border-radius: 2px;
  position: absolute;
  top:  95%;
  left: 50%;
  transform: translate(-50%,-50%);
 }

#textbox {
  display: flex;
  background: #27414f;
  padding: 3px 10px;
  border-radius: 2px;
  position: fixed;
  top:  95%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 75%;
}
.alignleft {
    flex: 1;
    text-align: left;
    margin-left: 12px;
}

.alignright {
    flex: 1;
    text-align: right;
    margin-right: 12px;
}

a.contact{
	color: lightblue;
}

table tr {
  background-color: #27414f;
  border: 3px solid #1a313d;
  padding: .35em;
}

table th,
table td {
  padding: 1.2em 1em;
  text-align: center;
}

table tr:hover {
  background-color: #34586a;
}

.list {
  background-color: #34586a;
}

table thead{
  background-color: #2a5367;
}

table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  body {
    margin:0 10%;
  }

  table {
    border: 0;
  }
  
  table caption {
    font-size: 1.3em;
  }
  
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  
  table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  
  table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  table td:last-child {
    border-bottom: 0;
  }

   h3 {
  font-size: 1em;
  margin: .5em 0 1.5em 0.2em;
  float: none;
  background: #27414f;
  padding: 12px;
  border-radius: 2px;
  text-align: center;
}

}