body {
    font-family: Helvetica, Arial, sans-serif;

    /* Das Konfetti sorgt fuer einen horizontalen Scrollbalken. Der ist haesslich und soll weg. */
    overflow-x: hidden;
}

ul#ergebnisse {
    list-style-type: none;
    padding: 0px;
}
ul#ergebnisse h3 {
    margin-bottom: 0px;
}
ul#ergebnisse p {
    margin-top: 8px;
    margin-bottom: 8px;
}

a:hover {
    text-decoration: none;
}

hr {
    margin: 40px;
    border-color: lightgray;
    border-width: 0.5px;
}

.rainbow {
    text-align: center;
    text-decoration: underline;
}
.rainbow-animated {
    background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow_animation 6s ease-in-out infinite;
    background-size: 400% 100%;
}

@keyframes rainbow_animation {
    0%,100% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }
}

.blinken {
    animation: blink_animation 1s linear infinite;
}

@keyframes blink_animation {
    50% {
        opacity: 0;
    }
}

#nachtreffen-infos {
    display: block;
    text-align: center;
}
#nachtreffen-link {
    font-size: 20px;
}

#confetti-canvas {
    position: absolute;
    top: 0;
}
