body {
    width: 100%;
    position: relative;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: minmax(auto, 1000px);
    justify-content: center;
    background-color: rgb(71, 74, 87);
    scroll-behavior: smooth;
}

header {
    display: grid;
    grid-auto-flow: column;
}

h1, h2, h3 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: blue;
    margin: 0;
}

h1 {
    font-size: 1.4rem;
}

h2 {
    font-size: 1.2rem;
}

h3 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.4rem;
}

p,code {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-top: 0px;
    font-size: 1rem;
}

p.leicht {
    font-size: 0.8rem;
    color: green;
    margin-top: 0.2rem;
    margin-bottom: 0;
}

p.mittel {
    font-size: 0.8rem;
    color: darkorange;
    margin-top: 0.2rem;
    margin-bottom: 0;
}

p.zeitaufwand {
    margin: 0px;
    font-size: 0.9rem;
    color: green;
    text-align: right;
}

section.loesung_druck {
    display: grid;
    grid-auto-flow: column;
    margin: 2em;
    margin-bottom: 3em;
}

.loesung {
    display: grid;
    grid-auto-flow: column;
    place-items: center;
}

.button_loesung {
    position: relative;
    display: inline-block;
    transition: 500ms;
    color: rgb(0, 175, 23);
    text-shadow: 0 0 0.05em green, 0 0 0.1em green;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: rgb(24, 255, 82);
    border: 0.2em;
    border-color: rgb(0, 195, 26);
    border-style: solid;
    border-radius: 0.5em;
    box-shadow: 0 0 0.3em green, 0 0 0.1em green, 0 0 0.1em green inset, 0em 0.3em 1em rgb(24, 255, 82);
    padding: 0.3em 0.5em;
}

.button_loesung::before {
    background-image: url(bulb-29050.svg);
    background-size: 3em 3em;
    opacity: 0;
    display: inline-block;
    position: absolute;
    left: -3.5em;
    top: -0.75em;
    width: 3em;
    height: 3em;
    content: "";
    transition: 500ms;
}

.button_loesung::after {
    background-image: url(bulb-29050.svg);
    background-size: 3em 3em;
    opacity: 0;
    display: inline-block;
    position: absolute;
    right: -3.5em;
    top: -0.75em;
    width: 3em;
    height: 3em;
    content: "";
    transition: 500ms;
}

.button_loesung:hover {
    position: relative;
    display: inline-block;
    transition: 300ms;
    color: rgba(174, 255, 25, 0.822);
    text-shadow: 0 0 0.05em rgb(68, 128, 0), 0 0 0.1em rgb(255, 106, 7);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: rgb(49, 245, 0);
    border: 0.2em;
    border-color: rgb(0, 211, 28);
    border-style: solid;
    border-radius: 0.5em;
    box-shadow: 0 0 0.2em green, 0 0 0.1em green inset, 0em 0.3em 1em rgb(0, 255, 64), 0em 0.3em 0.8em rgb(14, 255, 74);
    padding: 0.3em 0.5em;
}

.button_loesung:hover::before {
    background-image: url(bulb-29050.svg);
    background-size: 3em 3em;
    opacity: 1;
    display: inline-block;
    position: absolute;
    left: -3.5em;
    top: -0.75em;
    width: 3em;
    height: 3em;
    content: "";
    transition: 1500ms;
}

.button_loesung:hover::after {
    background-image: url(bulb-29050.svg);
    background-size: 3em 3em;
    opacity: 1;
    display: inline-block;
    position: absolute;
    right: -3.5em;
    top: -0.75em;
    width: 3em;
    height: 3em;
    content: "";
    transition: 1500ms;
}

.druck {
    display: grid;
    grid-auto-flow: column;
    place-items: center;
}

.button_druck {
    position: relative;
    display: inline-block;
    transition: 500ms;
    color: rgb(170, 2, 44);
    text-shadow: 0 0 0.05em red, 0 0 0.1em red;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: rgb(255, 97, 202);
    border: 0.2em;
    border-color: rgb(226, 7, 142);
    border-style: solid;
    border-radius: 0.5em;
    box-shadow: 0 0 0.2em red, 0 0 0.1em red inset, 0em 0.3em 1em rgb(255, 52, 160);
    padding: 0.3em 0.5em;
}

.button_druck::before {
    display: inline-block;
    position: absolute;
    right: -70px;
    top: -5px;
    opacity: 0;
    content: url(printer-28046_50.png);
    transition: 500ms;
}

.button_druck:hover {
    position: relative;
    display: inline-block;
    transition: 300ms;
    color: rgba(255, 152, 67, 0.877);
    text-shadow: 0 0 0.05em red, 0 0 0.1em rgb(255, 106, 7);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: rgb(255, 92, 233);
    border: 0.2em;
    border-color: rgb(255, 30, 180);
    border-style: solid;
    border-radius: 0.5em;
    box-shadow: 0 0 0.2em red, 0 0 0.1em red inset, 0em 0.3em 1em rgb(255, 92, 233), 0em 0.3em 0.8em rgb(255, 120, 250);
    padding: 0.3em 0.5em;
}

.button_druck:hover::before {
    display: inline-block;
    position: absolute;
    right: -70px;
    top: -5px;
    opacity: 1;
    content: url(printer-28046_50.png);
    transition: 1500ms;
}

.button_aufgabe {
    position: relative;
    display: inline-block;
    transition: 500ms;
    color: rgb(0, 105, 175);
    text-shadow: 0 0 0.05em blue, 0 0 0.1em blue;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: rgb(24, 163, 255);
    border: 0.2em;
    border-color: rgb(0, 101, 195);
    border-style: solid;
    border-radius: 0.5em;
    box-shadow: 0 0 0.3em rgb(0, 101, 195), 0 0 0.1em rgb(0, 101, 195), 0 0 0.1em blue inset, 0em 0.3em 1em rgb(24, 220, 255);
    padding: 0.3em 0.5em;
}

.button_aufgabe:hover {
    position: relative;
    display: inline-block;
    transition: 300ms;
    color: rgba(25, 255, 224, 0.822);
    text-shadow: 0 0 0.05em rgb(0, 134, 175), 0 0 0.1em rgb(255, 106, 7);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: rgb(24, 209, 255);
    border: 0.2em;
    border-color: rgb(0, 101, 195);
    border-style: solid;
    border-radius: 0.5em;
    box-shadow: 0 0 0.2em blue, 0 0 0.1em blue inset, 0em 0.3em 1em rgb(0, 101, 195), 0em 0.3em 0.8em rgb(24, 255, 255);
    padding: 0.3em 0.5em;
}

.button_beispiel {
    position: relative;
    display: inline-block;
    transition: 500ms;
    color: rgb(0, 105, 175);
    text-shadow: 0 0 0.05em blue, 0 0 0.1em blue;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 0.8rem;
    background-color: rgb(24, 163, 255);
    border: 0.2em;
    border-color: rgb(0, 101, 195);
    border-style: solid;
    border-radius: 0.5em;
    box-shadow: 0 0 0.3em rgb(0, 101, 195), 0 0 0.1em rgb(0, 101, 195), 0 0 0.1em blue inset, 0em 0.3em 1em rgb(24, 220, 255);
    padding: 0.3em 0.5em;
    margin: 0.5rem;
}

.button_beispiel:hover {
    position: relative;
    display: inline-block;
    transition: 300ms;
    color: rgba(25, 255, 224, 0.822);
    text-shadow: 0 0 0.05em rgb(0, 134, 175), 0 0 0.1em rgb(255, 106, 7);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 0.8rem;
    background-color: rgb(24, 209, 255);
    border: 0.2em;
    border-color: rgb(0, 101, 195);
    border-style: solid;
    border-radius: 0.5em;
    box-shadow: 0 0 0.2em blue, 0 0 0.1em blue inset, 0em 0.3em 1em rgb(0, 101, 195), 0em 0.3em 0.8em rgb(24, 255, 255);
    padding: 0.3em 0.5em;
}

.button_beispiel a {
    text-decoration: none;
    color: inherit;
}

.button_beispiel a:hover {
    text-decoration: none;
    color: inherit;
}

.button_uebungsaufgabe {
    position: relative;
    display: inline-block;
    transition: 500ms;
    color: rgb(226, 115, 11);
    text-shadow: 0 0 0.05em red, 0 0 0.1em red;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 0.8rem;
    background-color: rgb(255, 183, 66);
    border: 0.2em;
    border-color: rgb(226, 33, 7);
    border-style: solid;
    border-radius: 0.5em;
    box-shadow: 0 0 0.2em red, 0 0 0.1em red inset, 0em 0.3em 1em rgb(255, 150, 52);
    padding: 0.3em 0.5em;
}

.button_uebungsaufgabe:hover {
    position: relative;
    display: inline-block;
    transition: 300ms;
    color: rgba(255, 152, 67, 0.877);
    text-shadow: 0 0 0.05em red, 0 0 0.1em rgb(255, 106, 7);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 0.8rem;
    background-color: rgb(255, 232, 29);
    border: 0.2em;
    border-color: rgb(255, 75, 30);
    border-style: solid;
    border-radius: 0.5em;
    box-shadow: 0 0 0.2em red, 0 0 0.1em red inset, 0em 0.3em 1em rgb(255, 150, 52) 0em 0.3em 0.8em rgb(255, 232, 29);
    padding: 0.3em 0.5em;
}

.button_uebungsaufgabe a {
    text-decoration: none;
    color: inherit;
}

.button_uebungsaufgabe a:hover {
    text-decoration: none;
    color: inherit;
}

.aufgabe {
    background-color: rgb(248, 248, 250);
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    margin: 0.2rem;
    box-shadow: 0 0 0.2em rgb(238, 237, 241);
}

.aufgaben_nummer {
    background-color: rgb(210, 218, 198);
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    margin: 0.2rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 0 0.2em rgb(210, 218, 198);
    display: grid;
    grid-auto-flow: column;
}

.header_ueberschrift {
    background-color: rgb(189, 190, 216);
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0.2rem;
    box-shadow: 0 0 0.2em rgb(189, 190, 216);
}

main, header {
    margin: 0px;
}

main {
    display: grid;
    gap: 0.2rem;
    grid-auto-flow: row;
}

aside {
    background-color: rgb(189, 190, 216);
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    margin: 0.2rem;
    box-shadow: 0 0 0.2em rgb(189, 190, 216);
    position: relative;
}

aside a {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-top: 0px;
    font-size: 1rem;
    display: inline;
    margin-right: 0.5rem;
}

aside a.kapitel {
    display: none;
}
aside p.kapitel {
    display: none;
}

@media (min-width: 50rem) {
    main {
        grid-auto-flow: column;
        gap: 1rem;
    }

    aside {
        min-width: 7rem;
        max-width: 20rem;
        grid-auto-flow: row;
    }

    aside a {
        display: block;
    }

    aside a.kapitel {
        display: block;
        margin-top: 0px;
        font-size: 0.7rem;
        margin-left: 1.4rem;
        text-decoration: none;
        transition: all ease 0.5s;
        color: teal;
    }

    aside a.kapitel:hover {
        text-decoration: none;
        text-shadow: 0 0 0.2em rgb(35, 173, 0);
        transition: all ease 0.5s;
    }

    aside p.kapitel {
        display: block;
        margin-top: 0px;
        font-size: 0.9rem;
        margin-left: 1.2rem;
        margin-bottom: 0px;
        text-decoration: none;
        transition: all ease 0.5s;
        color: blueviolet;
    }
}

footer {
    font-family: Verdana, Arial, sans-serif;
    font-size: 0.7rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    color: maroon;
    font-weight: normal;
    background-color: lightgrey;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    margin: 0.2rem;
    box-shadow: 0 0 0.2em lightgrey;
}

footer a {
    margin: 0.5em;
}

tr p {
    margin: 0;
}

a.impressum_link {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 0.8rem;
    text-decoration: none;
    color: navy;
    transition: ease-in-out;
    transition-duration: 0.3s;
}

a.impressum_link:hover {
    text-shadow: 0.1rem 0.1rem 0.2rem rgb(73, 91, 133);
    transition: ease-in-out;
    transition-duration: 0.3s;
}

span.wert {
    color: purple;
}

span.variable {
    color: blue;
}

span.einheit {
    color: teal;
}

ol {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: inherit;
}

img.interaktiv {
    border-color: blue;
    border-style: solid;
    border-width: 2px;
    border-radius: 4px;
    padding: 3px;
    transition: all ease 0.5s;
}

img.interaktiv:hover {
    border-color: steelblue;
    box-shadow: 2px 2px 10px grey;
    transition: all ease 0.5s;
}

a.interaktiv {
    border-color: grey;
    background-color: lightgray;
    border-style: solid;
    border-width: 2px;
    border-radius: 4px;
    padding: 3px;
    transition: all ease 0.5s;
    text-decoration: none;
    color: blue;
}

a.interaktiv:hover {
    border-color: steelblue;
    box-shadow: 2px 2px 10px grey;
    transition: all ease 0.5s;
}

a.interaktiv:visited {
    border-color: grey;
    box-shadow: 2px 2px 10px grey;
    transition: all ease 0.5s;
    color: blue;
}

a.intern {
    text-decoration: none;
    color: blue;
    transition: all ease 0.5s;
}

a.intern:hover {
    text-decoration: none;
    text-shadow: 0 0 0.2em rgb(35, 173, 0);
    transition: all ease 0.5s;
}

a.extern {
    text-decoration: none;
    color: blue;
    transition: all ease 0.5s;
}

a.extern:hover {
    text-decoration: none;
    text-shadow: 0 0 0.2em rgb(255, 149, 28);
    transition: all ease 0.5s;
}


a.intern::before {
    text-decoration: none;
    font-weight: bold;
    color: green;
    content: '↘';
    transition: all ease 0.5s;
}

a.intern:hover::before {
    text-decoration: none;
    text-shadow: 0 0 0.1em darkgreen, 0 0 0.2em rgb(110, 206, 1), 0 0 0.4em rgb(186, 206, 1);
    transition: all ease 0.5s;
    content: '↘';
}

a.extern::before {
    text-decoration: none;
    font-weight: bold;
    color: blue;
    content: '↗';
    transition: all ease 0.5s;
}

a.extern:hover::before {
    text-decoration: none;
    text-shadow: 0 0 0.1em navy, 0 0 0.2em rgb(206, 59, 1), 0 0 0.4em rgb(206, 59, 1);
    transition: all ease 0.5s;
    content: '↗';
}

em.Fachwort {
    font-style: normal;
    font-weight: bold;
    color: darkred;
    background-color: lemonchiffon;
}

code.Fachwort {
    font-style: normal;
    font-weight: bold;
    color: darkred;
    background-color: lemonchiffon;
}

aside div {
    position: sticky;
    top: 0.5em;
}

table.Aufzaehlung_01 {
    margin: 0.5rem;
    border: 0px;
    border-collapse: collapse;
}
table.Aufzaehlung_01 td {
    padding: 0.1rem 0.4rem;
    vertical-align: top;
}

table.Aufzaehlung_01 tr:nth-child(2n-1) {
    background-color: gainsboro;
}