body {
    color: silver;
    background-color: rgb(37, 37, 37);
    font-family: Verdana, Arial, sans-serif;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    display: flex;
    justify-content: center;
}

a:link {
    text-decoration: underline;
    color:  rgb(240, 240, 100);
    font-style: italic;
}

a:visited {
    text-decoration: underline;
    color: rgb(240, 240, 100);
    font-style: italic;
}

a:hover {
    text-decoration: underline;
    color: rgb(240, 240, 100);
    font-style: italic;
}

img {
    width: 100%;
    pointer-events: none;
}

header {
    position: relative;
    min-height: 10rem;
    overflow: hidden;
    width: 100%;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

header img {
    position: absolute;
    top: -9999px;
    left: -9999px;
    bottom: -9999px;
    right: -9999px;
    margin: auto;
    z-index: -1;
}

footer {
    position: fixed;
    background-color: rgb(37, 37, 37);
    padding: 0.5rem;
    width: 100%;
    height: 2rem;
    bottom: 0;
    left: 0;
}

footer p {
    margin: 0;
}

.dontHideUnderFooter {
    height: 1rem;
}

.darkBit {
    margin-top: 2rem;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0.1rem;
}

.notes {
    font-size: 0.8rem;
}

.container {
    width: 100%;
    max-width: 80rem;
}

.indexTabel {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 1rem;
}

.indexTabel div {
    width: 18rem;
}

.indexTabel a {
    font-size: 1.3rem;
    font-weight: bold;
}

@media screen and (max-width: 615px) {
    footer {
        height: 3.5rem;
    }

    .dontHideUnderFooter {
        height: 3.5rem;
    }
}