body {
    background-color: #f6f2e9;
    margin: 0;
}

.main {
    padding: 200px 40px 40px 40px;
    margin: auto;
    max-width: 1200px;
}

a {
    text-decoration: none;
}

h1 {
    color: purple;
    text-align: center;
    font-size: 48px;
}

h2 {
    color: purple;
    font-size: 36px;
    padding: 0px 30px;
}

table {
    font-size: 22px;
    margin: 0 auto;
}

tr:first-child {
    background-color: #999
}

tr:nth-child(even) {
    background-color: #D6EEEE;
}

td, th {
    word-wrap: break-word;
    max-width: 400px;
    text-align: left;
    min-width: 150px;
}

p {
    font-size: 20px;
}

.section div.content {
    margin: auto;
    align-self: center;
    width: 100%;
}

.section div.content-row {
    width: 100%;
    display: flex;
}

div.content-row > * {
    vertical-align: top;
    padding: 0px 20px;
}

div.content-row p {
    flex-grow: 1;
}

.section div.content h2 {
    display: block;
}

.section div.content:nth-child(odd) {
    text-align: left;
    align-items: left;
    align-self: left;
    align-content: left;
    float: left;
}

.section div.content:nth-child(even){
    text-align: right;
    align-items: right;
    align-self: right;
    align-content: right;
    float: right;
}

.topnav {
    position: fixed;
    top: 0 0;
    background-color: #333;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.topnav a {
    display: inline-block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 26px;
    vertical-align: middle;
    font-weight: bold;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    background-color: #04AA6D;
    color: white;
}

.topnav img {
    display: inline-block;
    vertical-align: middle;
}

.topnav .filler {
    display:inline-block; 
    margin:0px 5%; 
    vertical-align: middle;
}

@media screen and (max-width: 800px) {
    .topnav a:not(:first-child) {display: none;}
  }
  
/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 800px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}

form {
    text-align: center;
}

.form-control {
    border: 0;
    margin: 5px;
    vertical-align: middle;
    border-radius: 8px;
    font-size: 20px;
}

form textarea {
    width: 700px;
}

form label {
    vertical-align: middle;
    text-align: right;
    width: 200px;
    font-size: 20px;
}

form button {
    background-color: purple;
    color: white
}