/* @font-face {
    font-family: Montserrat;
    src: url(assets/fonts/Montserrat/Montserrat-Regular.ttf);
} */

body {
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
    /* font-family: Montserrat; */
    font-family: Arial, Helvetica, sans-serif;
}

/* nav {
    position: static;
    width: 100vw;
    height: 45px;
    background-color: white;
} */

.content {
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;

    line-height: 1.5rem;
}

header {
    position: relative;
}

.withBackgroundImg {
    position: relative;
    display: block;
    
    /* padding: 20px; */
    padding-top: 150px;
    padding-bottom: 150px;

    text-align: center;
    
    color: white;
    /* color: black; */
}

.withBackgroundImg::after {
    position: absolute;
    content: "";
    
    background-color: white;
    width: 100%;
    height: 100%;
    
    top: 0;
    left: 0;
    
    /* Taken from idaho.gov */
    background-image: url(assets/images/footer-bkg.svg);
    
    background-size: cover;
    background-position-y: 0%;
    
    /* opacity: .5; */
    /* filter: brightness(.8); */
    
    z-index: -1;
}

@media only screen and (min-width: 1000px) {
    .withBackgroundImg::after {
        background-position-y: 15%;
    }
}

@media only screen and (max-width: 550px) {
    figure {
        margin-left: auto;
        margin-right: auto;
    }
}

figure {
    position: relative;
    display: table;

    margin-top: 10px;

    max-width: 90vw;
}

figcaption {
    position: absolute;

    display: table-caption;
    caption-side: bottom ;

    background-color: white;
    color: black;
    
    width: 80%;
    
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    
    padding: 8px;
    border-radius: .5rem;
    
    font-weight: 600;
    text-align: center;
}

figure > img {
    position: static;
    max-width: inherit;
}

img {
    border-radius: 1rem;
    box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.137);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    padding-top: 5px;
    padding-bottom: 5px;
}
h1 { font-size: 1.5rem; }
h2 { font-size: 1.1rem; }

a {
    color: inherit;
}

section {
    padding: 5px;
    margin-bottom: 50px;
}

blockquote {
    padding: 20px;
    text-align: center;
}


/* Footer */

footer {
    position: static;
    display: flex;

    justify-content: center;
    
    bottom: 0;
    left: 0;
    margin: 0;

    margin-top: 15px;

    padding-top: 15px;
    padding-bottom: 15px;

    width: 100%;
    background-color: rgb(30, 30, 30);
    color: white;

    text-align: center;
    font-size: .8rem;
    line-height: 1.3rem;
}

footer > span {
    display: inline-block;
    max-width: 150px;
    /* width: 50px; */
    /* max-width: 50px; */

    padding-left: 20px;
    padding-right: 20px;

    /* border-left: 1px dashed gray; */
    border-right: 1px dashed gray;
}

footer > span:last-of-type {
    border-right: none;
}

.footerLabel {
    font-weight: bold;
    font-size: 1rem;
}