* {
    --BackgroundColor: #181855;
    --TextColor: #CFB1FF;
    --aColor: #CFB1FF;
    --aVisitedColor: rgb(179, 0, 179);
    --BorderStyl: rgb(46, 46, 139) solid;
}

canvas{
    position: absolute;
    left: 0;
    top: 0;
    /* background-color: black; */
}

span{
    position: absolute;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    left: 0;
    color: white;
}

.logo {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
}

.logo img {
    height: 100px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

body {
    background-color: var(--BackgroundColor);
    margin: 0;
    height: 100vh;
    width: 100vw;
    font-family: Arial, Helvetica, sans-serif;
    display: grid;
    grid-template-columns: repeat(10, 10vw);
    color: var(--TextColor);
    z-index: 0;
}

*{
    z-index: 2;
}

iframe{
    position: absolute;
    pointer-events: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 50;
}

header {
    border: var(--BorderStyl);
    text-align: center;
    display: flex;
    justify-content: space-around;
    align-items: center;
    grid-area: 1 / 1 / 2 / 11;
}

nav {
    border: var(--BorderStyl);
    padding: 10px;
    grid-area: 2 / 1 / 3 / 4;
}

main {
    border: var(--BorderStyl);
    grid-area: 2 / 4 / 3 / 11;
}

aside {
    border: var(--BorderStyl);
    padding: 10px;
    grid-area: 3 / 1 / 4 / 11;
    text-align: center;
}

footer {
    border: var(--BorderStyl);
    padding: 10px;
    grid-area: 4 / 1 / 5 / 12;
    text-align: center;
}

.point {
    width: 10px;
}

nav a {
    color: var(--aColor);
}

nav a:visited, footer a:visited {
    color: var(--aVisitedColor);
}

nav a:hover, footer a:hover {
    color: white;
}

footer a {
    color: var(--aColor);
}

table {
    border: solid;
    border-collapse: collapse;
    height: 100%;
    width: 100%;
}

th {
    border: rgb(46, 46, 139) solid;
}

tr {
    border: solid;
}

td {
    border: var(--BorderStyl);
}

td:hover {
    background-color: var(--TextColor);
    color: var(--BackgroundColor);
    border: var(--BorderStyl);
}

.ja {
    background-color: lime;
    color: black;
}

.ja:hover {
    background-color: black;
    color: lime;
    border: var(--BorderStyl);
}

.nein {
    background-color: red;
    color: black;
}

.nein:hover {
    background-color: black;
    color: red;
    border: var(--BorderStyl);
}

.leer:hover {
    background-color: transparent;
    border: var(--BorderStyl);
}

img {
    max-width: fit-content;
    max-height: fit-content;
    object-fit: contain;
}

.catjam2 {
    transform: rotateY(180deg);
}

.links {
    color: var(--TextColor);
}

.links:hover {
    background-color: var(--TextColor);
    color: var(--BackgroundColor);
}

@media only screen and (max-width: 600px) {
    main {
        grid-area: 2 / 1 / 3 / 11;
    }

    nav {
        grid-area: 3 / 1 / 4 / 11;
    }

    aside {
        grid-area: 4 / 1 / 5 / 11;
    }

    footer {
        grid-area: 5 / 1 / 6 / 11;
    }

    aside img {
        width: 50vw;
    }

}