* {
    box-sizing: border-box;
}

html, body {
    background-color: #382a28; /* adds top and bottom over scroll color */
    margin: 0;
    padding: 0;
}
  
body {
    background-color:#a4dddb; /* was :#382a28 */
    font-family: Arial, Helvetica, sans-serif;
}
  
/* Style the header */
div.header {
    margin: 0px;
    padding: 0px;
}
  
.header {
    /*background-color: #a4dddb;*/
    text-align: center;
    font-size: 35px;
}
.header h2, .header p {
    color: #172038;
}
  
/* Style the nav */
nav {
    background-color: #253a5e;
}
  
/* remove the bullets and the margins and padding from the list */
ul {
    list-style-type: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
}
  
/* horizontal nav bar */
li {
    float: left;
    margin: 0px;
    padding: 0px;
}
  
/* Style nav links */
li a {
    display: block;
    color: #a4dddb;
    padding: 10px;
    text-align: center;
    text-decoration: none;
}
  
li a:hover {
    text-decoration-line: underline;
}
  
ul li a {
    font-size: 20px;
    list-style-type: none;
}
div.row {
    background-color: #a4dddb;
    color: #253a5e;
}
div.column {
    background-color: #a4dddb;
}
p {
    color: #253a5e;
}

p2 {
    color: #564238;
    font-size: 24px;
}

h2 {
    color: #253a5e;
    font-size: 18px;  
}
/* table typography */
tr > td > a { color: #3c5e8b; }

tr > td > a:visited { color: #402751; }

tr > th { text-align: left; }

/* Create two equal columns that floats next to each other */
.column {
    background-color: #a4dddb;
    float: left;
    width: 50%;
    padding: 10px; 
}
  
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Style the footer */
.footer {
    background-color: #564238;
    border-top: solid 10px #382a28;
    padding: 10px;
    text-align: center;
}

.footer p {
    color: #b1a282;
}
  
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
    .column {
        width: 100%;
    }
}
