a {
    color: #fff;
}
.pageContainer {
    display: flex;
    flex-wrap: wrap;
}
.mainContainer,
.mini {
    width: 100%;
}
.linkTabs {
    order: 1;
}
.mainContainer {
    order: 2;
}
.mini {
    order: 3;
}
.mainContainer {
    background: #333;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.25) 100%);
}
br {
    display: none;
}
p {
    margin: 0;
}
.ball {
    position: absolute;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    top: 0;
    left: 0;
    z-index: 10;
    transform: translateX(64rem);
    transition: transform ease-in-out 0.75s 1s, left ease-in-out 0.75s 1s;
}
h1 {
    font-size: 3rem;
    font-weight: 200;
    width: auto;
    height: auto;
    margin: 3rem auto 0 auto;
    overflow: visible;
}
article {
    margin: 3rem auto 3rem auto;
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.333);
    box-shadow: rgba(0, 0, 0, 0.33) 0 0.5rem 1.5rem inset;
}
h2 {
    font-size: 2rem;
    font-weight: 400;
}
.drawNumbers {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}
@media (min-width: 640px) {
    .drawNumbers {
        gap: 0.75rem;
    }
}
.drawNumbers > .ball {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
}
.drawNumber > .ball.superNumber {
    position: absolute;
    top: 0;
    right: 0;
}
.details {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0.75rem 3rem;
    width: 100%;
    max-width: 32rem;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease-out, margin 0.5s ease-out, opacity 0.5s ease-out;
}
.showDetailsButton::before {
    font-size: 0.875rem;
    content: "Details anzeigen …";
}
@media (pointer: fine) {
    .showDetailsButton::before {
        content: "Details anzeigen …";
        opacity: 0;
        transition: opacity 0.25s ease-out;
    }
    article:hover .showDetailsButton::before {
        opacity: 1;
    }
}
.showDetails {
    display: none;
}
.showDetails:checked + .details {
    max-height: 32rem;
    margin: 3rem auto;
    opacity: 1;
}
.odds,
.amountInfo,
.extraGameA,
.extraGameB {
    align-content: center;
}
.odds {
    grid-column: span 5 / span 5;
    grid-row: span 3 / span 3;
    margin: 0.75rem;
    border-collapse: collapse;
}
.amountInfo,
.extraGameA,
.extraGameB {
    border-radius: 4px;
}
.amountInfo {
    grid-column-start: 6;
    background-color: #a00;
    padding: 0.75rem;
}
.extraGameA {
    grid-column-start: 6;
    grid-row-start: 2;
    background-color: #005a7e;
    padding: 0.75rem;
}
.extraGameB {
    grid-column-start: 6;
    grid-row-start: 3;
    background-color: #820038;
    padding: 0.75rem;
}
.odds th,
.odds td {
    vertical-align: top;
    text-align: right;
    line-height: 2;
}
.odds th:first-child,
.odds td:first-child {
    text-align: left;
}
.history {
    margin: 3rem auto;
    max-width: 92rem;
}
.history > ul {
    column-width: 16em;
    column-rule: rgba(127, 127, 127, 0.25) 2px dashed;
    column-gap: 1.5rem;
    justify-content: top;
    list-style: none;
    margin: 0;
    padding: 0;
    vertical-align: top;
    font-size: 16px;
}
.history > ul > li {
    width: 100%;
    margin: 0;
    padding: 0.5em;
}
.history > ul > li.decadeStarts {
    background: rgba(255, 255, 255, 0.75);
}
.history > ul > li > a {
    text-decoration: none;
}
.history > ul > li.decadeStarts > a {
    color: rgba(0, 0, 0, 0.75);
}
.history > ul > li > a > .year {
    font-weight: bold;
}
.mini {
    margin: 1.5rem auto;
}
