* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
    background-image: url('bg_lila-orange-blau.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
}

.container {
    position: relative; /* Relative position für den Container */
    z-index: 1;
    background-color: rgba(221, 221, 221, 0.8);
    padding: 20px;
    border-radius: 10px;
    color: #666666;
    font-size: 3em;
    text-align: center;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    width: 670px;
    margin-bottom: 23px;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg_lila-orange-blau.jpg'); /* Dein Hintergrundbild */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    animation: hueAnimation 23s infinite; /* Hue Animation */
}

@keyframes hueAnimation {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg); /* Full rotation */
    }
}


p#ad {
    /*color: blueviolet;*/
}

p#md {
    /*color: #FF6600;*/
}



