a {
    color: #08623a;
}

a:hover {
    background-color: #ffdd39;
    color: #000;
}

.header {
    padding: 0;
    text-align: center;
}

h1 {
    background: white;
    color: #ef2920;
}

h2 {
    background: white;
    color: #08623a;
}

/* Add a black background color to the top navigation */
.topnav {
    position: relative;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    background-color: white;
    color: #08623a;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ffdd39;
    color: black;
}

/* Centered section inside the top navigation */
.topnav-centered a {
    float: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Right-aligned section inside the top navigation */
.topnav-right {
    float: right;
}

/* Responsive navigation menu - display links on top of each other instead of next to each other (for mobile devices) */
@media screen and (max-width: 600px) {
    .topnav a, .topnav-right {
        float: none;
        display: block;
    }

    .topnav-centered a {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }
}

.padding-16 {
    padding: 16px;
}

th {
    text-align: right;
}

td {
    text-align: left;
}

.footer {
    padding: 32px;
    text-align: center;
    background: black;
    color: white;
    font-size: 24px;
}

.footer address {
    font-style: normal;
}

.imgbox {
    display: grid;
    height: 75%;
}

.center-fit {
    max-width: 75%;
    max-height: 75vh;
    margin: auto;
}

* {
    box-sizing: border-box;
}

.column {
    float: left;
    width: 25%;
    padding: 0;
}

/* Clearfix (clear floats) */
.row::after {
    content: "";
    clear: both;
    display: table;
}

/* Responsive layout - makes the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
    .column {
        width: 100%;
    }
}