* {
    background-color: #00538F;
    font-family: 'Segoe UI';
    color: #E2DADB;
}

a:hover {
    color: #3A506B;
}

a:link {
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0;
}

h1, #header {
    text-align: center;
}

h2 {
    margin-left: 2%;
}

hr {
    background-color: #E55B24;
    border: none;
    height: 10px;
    margin: 1% 0 0 0;
}

figcaption {
    font-style: italic;
    margin-bottom: 5%;
    margin-top: .5%;
    text-align: center;
}

figure {
    margin-top: 5%;
}

figure img {
    border: solid #E55B24 10px;
    display: block;
    margin: auto;
    text-align: center;
    width: auto;
}

footer {
    text-align: center;
    background-color: #E55B24;
}

nav, footer a, footer i, footer p, header a {
    background-color: #E55B24;
    padding-top: .5%;
    padding-bottom: .5%;
}

p {
    margin-left: 2%;
    margin-right: 2%;
    text-indent: 2em;
}

/** Slideshow CSS **/
.slideshow-container {
    box-sizing: border-box;
}

.slideshow-container img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-height: 50%;
    max-width: 50%;
    object-fit: fill;
}
  
/* Position the image container (needed to position the left and right arrows) */
.slideshow-container {
    position: absolute;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
    cursor: pointer;
}

/* Next & previous buttons */
.prev, .next {
    border-radius: 0 3px 3px 0;
    color: #E55B24;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    margin-top: -50px;
    padding: 16px;
    position: absolute;
    top: 50%;
    user-select: none;
    width: auto;
}

.prev {
    left: 20%;
}

/* Position the "next button" to the right */
.next {
    right: 20%;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Container for image text */
.caption-container {
    background-color: #E55B24;
    border: 1px solid #E55B24;
    color: white;
    padding: 0;
    text-align: center;
}

.row:after {
    clear: both;
    content: "";
    display: table;
}

/* Six columns side by side */
    .column {
    float: left;
    width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.thumbnail {
    opacity: 0.6;
}

.active, .thumbnail:hover {
    opacity: 1;
}