html {
    font-size:100%;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 10;
    padding: 0;
}

.fsButton {
    background-color: #008080;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.fsButton:hover {
    background-color: #005757;
}

.vertical-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.vertical-table th {
    background-color: teal;
    color: #ffffff;
    text-align: right;
}

.vertical-table th, .vertical-table td {
    padding: 12px 15px;
}

.stripey-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.stripey-table thead tr {
    background-color: teal;
    color: #ffffff;
    text-align: left;
}

.stripey-table th, .stripey-table td {
    padding: 12px 15px;
}

.stripey-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.stripey-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.stripey-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}

.flex-container {
    display: inline-flex;
    background-color: teal;
    min-width: 500px;
}
  
.flex-container > div {
    background-color: #f1f1f1;
    margin: 10px;
    padding: 20px;
    font-size: 16px;
}

a {
    color: teal;
  }

.fa-building-magnifying-glass {
    color: teal;
}

.fa-table-list {
    color: teal;
}

.fa-code-compare {
    color: teal;
}

.fa-download {
    color: teal;
}