:root {
    --dark-ocean: #1A535C;
    --mantis: #6cc86c;
    --magic-mint: #98E2C6;
    --powder-blue: #BFEDEF;
    --russian-violet: #4E0250;
    --rounded-corner-radius: 15px;
    --exped-widget-height: 250px;
}

#bannerNav {
    display: flex;
    flex-direction: column;
}

body {
    margin: 5% 0;
	/* font-family: "Playfair Display", 'Georgia', serif; */
	/* font-family: "monospace"; */
	font-family: "Courier New";
	font-size: 16px;
}

footer {
    text-align: center;
    font-size: 13px;
}

#banner {
    text-align: center;
    border: 0px;
    font-size: 16px;
    margin: 0 0 5% 0;
}

.expedWidget {
    margin: 5% 0;
    position: relative;
    height: var(--exped-widget-height);
    overflow: hidden;
}

.expedWidgetTitle {
    display: block;
    width: 100%;
    color: white;
    line-height: 35px;
    padding: 5px 0;
    margin: 0;
    background: var(--mantis);
    text-align: center;
}

.expedWidgetDate {
    display: block;
    width: 100%;
    color: white;
    line-height: 35px;
    padding: 5px 0;
    margin: 0;
    background: var(--mantis);
    text-align: center;
}

.expedWidgetDateTitle {
    display: flex;
    flex-direction: row;
}

.expedWidgetDesc {
    display: block;
    margin: 0 auto;
    background-color: rgba(0,0,0, 0.4);
    color: white;
    font-weight: bold;
    width: 100%;
    height: 100%;
    flex-grow: 1;
    padding: 20px 0;
    text-align: center;
}

.expedWidgetContent {
    position: absolute;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}


.bg-image {
    position: absolute;
    top: 45px;

    /* z-index: -1; */
    width: 90%;
    width: 100%;
    height: 100%;
    /* overflow: hidden; */

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

main img {
    width: 100%;
    height: 100%;
    margin: 5%;
    border-radius: var(--rounded-corner-radius);
}

article img {
    width: 100%;
    margin: 5% 0;
}

.inset {
    width: 90%;
    margin: 5% auto;
    display: block;
}

img .inset {
    margin: 5%;
}

.round-corners {
    border-radius: var(--rounded-corner-radius);
}

.center-text {
    text-align: center;
}

a:hover .bg-image {
    filter: blur(2px);
    -webkit-filter: blur(2px);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    /* transition-timing-function: ease-in-out; */
}

/* #### Nav stuff #### */

a:link, a:active {
    color: none;
}


nav {
    background: #6cc86c;
}

nav ul {
    padding: 0;
    /* margin: 0 0 10 0; */
    margin: 0 0 0 0;
    list-style-type: none;
}

nav ul li {
    text-decoration: none;
    text-align: center;
    padding: 10px 0;
    margin: 0 auto;
}

nav a {
    text-decoration: none;
}

nav a li {
    text-decoration: none;
    text-align: center;
    color: white;
    display: block;
    font-size: 16px;
    position: relative;
}

/* nav a:hover { */
nav li:hover {
    /* color: var(--mantis); */
    background: white;
    color: var(--mantis);
}

nav li:hover a {
    color: var(--mantis);
}

#navMenu {
    background: var(--dark-ocean);
    color: white;
}

dl {
    list-style: none;
}

dt::before {
    content: " - ";
}

dt::after {
    content: ": ";
}

dd::before {
    content: "\2022 ";
}

dl div {
    margin: 0 0 40px 0;
}

.kitListTitle {
    /* text-decoration: underline; */
    display: inline;
    border-bottom: 1px solid black;
}

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