:root{
    --section-bg-color-rgba: rgba(255, 188, 94, 0.1);
    --figcaption-color-rgb: rgb(255, 203, 203); 
    --nav-bg-color-rgb: rgb(255, 255, 255);
    --nav-color: rgb(0, 0, 0);
    --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);
}

.grid-container {
    display: grid;
    grid-template-columns: 50% 50%;
}

.grid-containerAlt {
    display: grid;
    grid-template-columns: 50% 50%;
}

#container{
    overflow: hidden;
    grid-column: 1;
    grid-row: 1;
}

.item2{
    overflow: hidden;
    grid-column: 2;
    grid-row: 1;
}

.item2alt{
    overflow: hidden;
    grid-column: 2;
    grid-row: 1;
}

.item3{
    grid-column: 2;
    grid-row: 2;
    margin-top: -20em;
}

main{
    display: grid;
    width: 100em;
}

figure{
    float: left;
    width: 150%;
    margin-top: .5em;
}

.formElements{
    justify-content: center;
}

.stretch{
    justify-content: center;
}

.text{
    text-transform: uppercase;
    text-align: center;
    width: auto;
}

img{
    height: 9em;
    width: 16em;
    border-radius: 1.5em;
}

body{
    font-family: 'Lato', 'Arial', 'sans-serif';
    background-color: #f8f8f8;
    margin-top: 1.875em;
    margin-bottom: 1.875em;
    margin-right: 1.875em;
    margin-left: 1.875em;
}

p{
    max-width: 80ch;
}

figcaption{
    color: var(--figcaption-color-rgb);
    font-style: italic;
    display: block;
}

p{
    text-indent: 2.5em;
}

a{
    color: blue;
}

a:hover {
    background-color: rgb(215, 236, 255);
}

nav a:link{
    color: var(--nav-color);
    text-decoration: none;
}

nav a:hover{
    text-decoration: underline;
    font-size: 103%;
}

nav a{
    display: inline;
    color: black;
    width: 19%;
    margin-left: 1.2em;
    margin-right: 1.2em;
}

nav{
    text-align: center;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 120%;
    justify-content: center;
    align-items: center;
}


li {
    background-color: var(--list-bg-color);
}

header{
    justify-content: space-between;
}

h3{
    font-size:80%;
    padding-top: 4em;
}

ul{
    font-size: 85%;
}

.padding {
    padding: 1.25em;
    margin-bottom: 3.125em;
    margin-top: 3.125em;
}

#bigHeader{
    font-size: 200%;
    text-transform: uppercase;
}

.headerAlign{
    text-align: left;
}

.right{
    float: right;
    margin-left: 3%;
}

.small {
    width: 20%;
}

.center {
  margin-left: 1em;
  margin-right: 1em;
  width: auto;
}

.centerImg {
    display: block;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

table {
    display: table-cell;
    text-align: center;
    border: 0.0625em solid var(--border-color);
    border-collapse: collapse;
}

tr {
    border: 0.0625em solid var(--tr-color-rgb);
    text-align: center;
    padding: 1em;
}

tr:nth-child(even) {
    background-color: #feffd1;
  }

td{
    border: 0.0625em solid var(--border-color);
}

th{
    background-color: var(--table-head-color);
}


form{
    background-color: var(--form-bg-color-rgb);
    border: thin solid var(--border-color);
    margin: auto;
    padding: 1%;
    clear: both;
    max-width: 80%
}

form p{
    text-indent: 0;
} 

input[type=submit]{
    background-color: rgba(117, 119, 146, 0.274);
    color: rgb(25, 0, 255);
    padding: 1%;
    text-align: center;
}

label{
    display: block;
}

.radio label,
.checkbox label{
    display: inline;
}

fieldset{
    display: block;
}

.activePage{
    color: rgb(153, 153, 153);
    font-weight: bold;
    border-bottom: solid black .025em;
}

#ipfFigure > img{
    width: 60%;
    height: 35em;
}

#jesusFigure > img{
    width: 33em;
    height: 38em;
    margin-top: 3em;
    margin-left: 1.6em;
}

h4{
    font-size: 80%;
    font-style: italic;
}

.newsTable{
    display: inline;
    width: 100%;
    height: 100%;
}

.cleanCite{
    font-size: 80%;
    text-align: left;
}

.center tr:hover{
    background-color: rgb(223, 241, 255);
}