body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #222;
}

header, footer {
    background: #111;
    color: white;
    padding: 1em;
    text-align: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    background: #333;
}

nav li {
    margin: 0 1em;
}

nav a:link {
    color: white;
    text-decoration: none;
}
nav a:hover {
    color: white;
    text-decoration: none;
}
nav a:visited {
    color: white;
    text-decoration: none;
}
nav#jumptocontent a {
    position: absolute;
    left: -9999px;
}
nav#jumptocontent a:focus {
    position: static;
}

main {
    padding: 2em;
    max-width: 1200px;
    margin: auto;
}

.text {
    flex: 1 1 60%;
}

@media (max-width: 768px) {
    .text {
        flex: 1 1 100%;
    }
}

figcaption {
    font-style: italic;
}

a:link {
    color:darkblue;
    text-decoration: underline;
}
a:hover {
    color:blue;
    text-decoration: underline;
}
a:visited {
    color:blueviolet;
    text-decoration: underline;
}

table, th, td {
    padding: 0.1em !important;
    border-spacing: 0em !important;
    border: 1px solid black !important;
    border-collapse: collapse !important;
}

.carousel-inner {
    justify-content: center;
    display: block;
    flex-direction: column;
}
.carousel-inner > .carousel-item {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 33em;
}
.carousel-item img {
    justify-content: center;
    display:flex;
    flex-direction: column;
    align-items: center;
    object-fit: contain;
}
.carousel img {
    margin: auto;
}


.ct {
    font-size: 2em;
    font-weight: bold;
}