* {
    box-sizing: border-box;
}

header {
    margin-bottom: 1em;
    overflow: auto;
    border-bottom: 1px solid white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media screen and (max-width: 600px) {
    #header-menu {
        display: flex;
        justify-content: flex-end;
    }

    #header-nav {
        display: none;
        position: absolute;
        max-width: fit-content;
        z-index: 1;
        margin-top: 1em;
    }

    #header-nav-menu {
        flex-direction: column;
        justify-content: center;
    }

    #header-opennavmenu {
        font-size: 1.5em;
        margin-right: 0.5em;
    }
}

@media screen and (min-width: 600px) {
    #header-nav {
        min-width: 20em;
    }

    #header-nav-menu {
        flex-direction: row;
        display: flex;
    }

    #header-opennavmenu {
        display: none;
    }
}

#header-logo-container {
    max-width: 10em;
}

#header-logo-container img {
    max-width: 100%;
    height: auto;
    image-rendering: pixelated;
}

#header-nav-menu {
    list-style-type: none;
    padding: 0;
    justify-content: space-between;
}

#header-nav-menu a {
    color: white;
    text-decoration: none;
}

#header-nav-menu li {
    padding: 1em;
    width: 5em;
    text-align: center;
    margin: 0 0.5em;
    background-color: rgba(0.0,0.0,0.0,1.0);
    background-image: linear-gradient(to right, rgb(110, 0, 0), rgb(82, 0, 33));
    background-blend-mode: multiply;
    transition: background-color 0.2s ease;
}

#header-nav-menu li:hover {
    background-color: rgba(0.0,0.0,0.0,0.0);
}

footer {
    font-size: small;
    margin-top: 3em;
    overflow: auto;
    border-top: 1px solid white;
    padding-left: 1em;
    padding-right: 1em;
    clear: both;
}

.footer-left {
    width: 50%;
    float: left;
}

.footer-right {
    width: 50%;
    float: right;
    text-align: right;
}

body {
    background-color: black;
    color: white;
    position: relative;
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

section {
    width: 100%;
    margin-top: 1em;
    overflow: auto;
    padding: 1em;
}

.infobox {
    float: right;
    background-color: black;
    border: 1px solid white;
    margin: 0.5em;
}

@media (min-width: 750px) {
    .infobox {width: 20em;}
}

@media (max-width: 750px) {
    .infobox {width: 100%;}
}

.ib-title {
    border: 1px solid white;
    text-align: center;
    font-size: medium;
    width: 100%;
}

.ib-img-main {
    padding: 0;
    text-align: center;
}

.ib-img-main img {
    max-width: 25em;
    min-width: 9em;
    height: auto;
    image-rendering: pixelated;
}

.ib-section-header {
    text-align: center;
    border: 1px solid white;
}

th {
    text-align: left;
    padding: 0.5em;
    font-size: small;
    width: 35%;
}

td {
    padding: 0.5em;
    text-align: left;
    font-size: small;
}

.infosection-left {
    width: 50%;
    float: left;
    padding: 1em;
}

.infosection-right {
    width: 50%;
    float: left;
    padding: 1em;
}

h1 {
    font-size: xx-large;
    font-weight: normal;
}

a {
    color: rgb(255, 116, 116);
}