:root{
    --section-bg-color-rgba: rgba(255, 188, 94, 0.1);
    --figcaption-color-rgb: rgb(255, 203, 203); 
    --nav-bg-color-rgb: rgb(253, 255, 226);
    --nav-color: rgb(7, 7, 161);
    --border-color: black;
    --li-bg-color: white;
    --odd-bg-color-rgb: rgb(238, 255, 234);
    --even-bg-color-rgb: rgb(255, 252, 229);
    --table-head-color: yellow;
    --tr-color-rgb: rgb(255, 221, 221);
    --form-bg-color-rgb: rgb(222, 224, 245);
}

figure{
    float: left;
    text-align: center;
    width: 20%;
    border-radius: 1.5em;
    border: 0.0625em solid var(--border-color);
}

img{
    max-width: 100%;
    border-radius: 1.5em;
}

body{
    font-family: 'Lato', 'Arial', 'sans-serif';
    background-color: #fbfbfb;
    position: relative;
    display: flex; 
    flex-direction: column;
    margin-top: 1.875em;
    margin-bottom: 1.875em;
    margin-right: 1.875em;
    margin-left: 1.875em;
}

figcaption{
    color: var(--figcaption-color-rgb);
    font-style: italic;
}

section{
    background-color: var(--section-bg-color-rgba);
}

p{
    text-indent: 2.5em;
}

nav a:link{
    background-color: var(--nav-bg-color-rgb);
    color: var(--nav-color);
    text-decoration: none;
}

nav a:hover{
    text-decoration: underline;
    font-size: 103%;
}

nav a{
    display: inline-block;
    width: 19%;
}

nav{
    border: thin solid var(--border-color);
    background-color: var(--nav-bg-color-rgb);
    text-align: center;
    font-family: 'Trebuchet MS', sans-serif;
}

a:hover {
    background-color: rgb(215, 236, 255);
  }

li {
    background-color: var(--list-bg-color);
}
li:nth-child(odd) {
    background-color: var(--odd-bg-color-rgb);
}
li:nth-child(even) {
    background-color: var(--even-bg-color-rgb);
}

.records{
    text-align: center;
    float: left;
}

#padding {
    padding: 1.25em;
    margin-bottom: 3.125em;
    margin-top: 3.125em;
}

#bigHeader{
    font-size: 200%;
    text-transform: uppercase;
}

#footerPadding{
    margin-top: 11.25em;
}

#notePadding{
    margin-top:37.5em;
}

.right{
    float: right;
    margin-left: 3%;
}

.small {
    width: 20%;
}

.center {
  margin-left: 1em;
  margin-right: 1em;
  width: 30%
}

.centerImg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }

table {
    margin-top: 1.875em;
    margin-bottom: 1.875em;
    margin-left: auto;
    margin-right: auto;
    display: inline-table;;
    font-size: 100%;
    text-align: center;
    padding: 1em;
    border: 1px solid var(--border-color);
    border-collapse: collapse;
    width: 80%
}

tr {
    border: 0.0625em solid var(--tr-color-rgb);
    text-align: center;
    padding: 1em;
}

td{
    border: 1px solid var(--border-color);
}

tr:nth-child(odd) {
    background-color: var(--odd-bg-color-rgb);
}
tr:nth-child(even) {
    background-color: var(--even-bg-color-rgb);
}

th{
    background-color: var(--table-head-color);
}

#footerNote{
    font-size: 110%;
}

.imgAlign{
    text-align: center; 
    width: 20%; 
    font-size: 80%;
}

#smallNote{
    font-size:85%;
}


form{
    background-color: var(--form-bg-color-rgb);
    border: thin solid var(--border-color);
    max-width: 30em;
    margin: auto;
    padding: 1%;
    clear: both;
}

form p{
    text-indent: 0;
} 