/*Mass scale styles*/
*{

}
article p{
    text-indent: 2em;
}

/*Header font, size, and placements*/
header{
    text-align: center;
}
header h2{
    margin-bottom: 10px;
}
@keyframes expandIn {
    0% {
        opacity: 0;
        width: 0%;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        width: 75%;
    }
}

.headerBar {
    animation: expandIn 2s ease 0s forwards;
    border-color: black;
    border-radius: 2px;
    background-color: indigo;
    width: 75%;
    height: 2px;
}
/*Main Body sizing, spacing, and background*/
body {
    background-color: #FFFFFF;
    font-size: large;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 5px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 5px;
    max-width: 800px;
    /*min-width: 386px;*/
    width: 80%;
    /*border: solid 5px indigo;*/
    border-radius: 20px;
    box-shadow: 5px 5px 20px 1px;
}
html {
    background-color: dimgray;/*RGB(48,0,61);*/
    /*background-image: url("images/FillamentAccented.jpg");
    background-repeat: no-repeat;
    background-size: cover;*/
}
/*Nav styles*/
/*note to self: all button styling is applied to the <a> tag to keep clickable box completely over border*/
/*also see: <a> styles for other spacing and coloring*/
nav ul {
    background-color: #999999;
    border: outset 3px #BBBBBB;
    /*height: 34px;*/
    width: 90%;
    min-width: 250px;
    padding: 0px;
    margin: 0px;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    justify-content: space-evenly;
}
nav *{
    border-radius: 15px;
}
nav {
    display: flex;
    justify-content: center;
}
nav li{
    float: left;
    overflow: hidden;
    list-style-type: none;
}
nav li a:hover{
    border-style: inset;
    background-color: #BBBBBB;
}
nav li a {
    display: inline-block;
    padding: 5px;
    border: outset 3px #BBBBBB;
    background-color: #DDDDDD;
    font-weight: bold;
    text-decoration: none;
    transition: background-color .2s, border-color .2s, color .2s;
}
nav li .current{
    border-style: inset;
    color: indigo;
    background-color: #BBBBBB;
}
/*Figure formatting*/
figure{
    border: solid 2px #BBBBBB;
    background-color: #999999;
}
figcaption{
    margin: 3px;
}
figure img {
    border-bottom: solid 2px #BBBBBB;
}
/*link styles*/
a {
    color: blueviolet;
}

a:visited {
    color: blueviolet;
}

a:hover {
    color: indigo;
}
/*
    Footer date updater
    set date modified here and all footers will be updated
*/
footer p:after{
    content: " Modified 12/5/2021."
}
footer p{
    text-align: center;
    color: dimgray;
    margin: 10px;
}
