body {
  margin: 0;
  font-family: sans-serif; 
  background-color: white; 
}

.header-table{
  display: table;
  width: 100%;
  position: fixed;
  top: 0px;
  height: 60px;
  text-align: center;
  background: linear-gradient( to top, white, #179bd7 );
}

.header-table-row{
  display: table-row;
}

.header-table-cell{
  display: table-cell;
  padding: 12px 39px 6px 39px;
}

.footer-table{
  display: table;
  width: 100%;
  position: fixed;
  bottom: 0px;
  height: 40px;
  background: #003e6a;
}

.footer-table-row{
  display: table-row;
}

.footer-table-cell-image{
  display: table-cell;
  padding: 5px 5px 5px 5px;
  width: 10%;
  vertical-align: middle;
  text-align: right;
}

.footer-table-cell-text{
  display: table-cell;
  padding: 5px 5px 5px 5px;
  width: 15%;
  vertical-align: middle;
  text-align: left;
  font-weight: bold;
  font-size: 16px;
  color: white;
}

.footer-table-cell-link{
  display: table-cell;
  padding: 5px 5px 5px 5px;
  width: 25%;
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  color: white;
}

.footer-table-cell-link a {
  color: white;
}

.message{
  overflow-y: auto;
  padding: 80px 0px 40px 0px;
}

.message-table{
  display: table;
  padding-left: 20%;
  padding-right: 20%;
}

.message-table-row{
  display: table-row;
}

.message-table-cell-title{
  display: table-cell;
  padding: 10px 20px 10px 20px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #003e6a; 
}

.message-table-cell-text{
  display: table-cell;
  padding: 10px 20px 10px 20px;
  font-size: 16px;
  color: black;
}

.message-table-cell-line{
  display: table-cell;
}

.message-table hr {
  border: none;
  height: 1px;
  color: #21b1f0; 
  background-color: #21b1f0; 
}

.message-table a {
  color: #003e6a; 
} 

@media screen and (min-width: 680px) {
  .footer-table-cell-text{ font-size: 16px; }
  .footer-table-cell-link{ font-size: 20px; }
  .message-table{ padding-left: 20%; padding-right: 20%; }
  .message-table-cell-title{ font-size: 24px; }
  .message-table-cell-text{ font-size: 16px; }
}

@media screen and (max-width: 680px) {
  .footer-table-cell-text{ font-size: 12px; }
  .footer-table-cell-link{ font-size: 16px; }
  .message-table{ padding-left: 10%; padding-right: 10%; }
  .message-table-cell-title{ font-size: 20px; }
  .message-table-cell-text{ font-size: 14px; }
}