body {
    --ThemeColor: rgb(0, 141, 141);
    --ThemeColor_rbga: rgba(0, 141, 141, 0.5);

    background: linear-gradient(90deg, var(--ThemeColor) 0%, #000851 25%, #000851, var(--ThemeColor) 100%);
}
.TextContainer {
/*    position: relative;*/
/*        background-color: rgba(28, 181, 224, 0.42);*/
    /*       border: #3ff solid medium;*/

/*    border: var(--ThemeColor) solid medium;*/
      background-color: var(--ThemeColor_rbga);
    border-style: solid;
    border-color: var(--ThemeColor);
    border-radius: 20px;

    width: 80%;
        max-width: 880px;
    margin: auto;
    margin-top: 25px;
    margin-bottom: 25px;
}
.TextContainer p {
    margin: 0 20px 0 20px;
    color: beige;
    text-align: center;
}
.TextContainer p a {
    color: aquamarine;
}

h1 {
    font-size: 24px;
    background: -webkit-linear-gradient(#eee, var(--ThemeColor));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    text-decoration: none;
    /*    margin-top: 15px;
    margin-bottom: 0;*/
    margin: 20px 20px 0 20px;
}

.vticker {
    border: none;
    background-color: rgba(192, 192, 192, 0.8);
    width: 878px;
}

.vticker ul {
    padding: 0;
    margin: 15px;
    font: bold 14px courier;
    text-align: center;
}

.vticker li {
    list-style: none;
    border-bottom: 1px solid gray;
    padding-top: 3px;
    padding-left: 10px;
}

#Newsticker-Headline {
    width: 878px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-color: #FF0000;
    border-style: solid;
    border-width: 1px;
    border-bottom: none;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
}

.Newsticker-Content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-color: #FF0000;
    border-style: solid;
    border-width: 1px;
    border-top: none;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 25px;

}

.Newsticker-Content li::before {
    content: "++++   "
}

.Newsticker-Content li::after {
    content: "    ++++"
}

/* Glühende Neon Buchstaben */

div.neon {
 font-family: "Tahoma";
 font-variant:normal;
 color: rgb(255, 255, 255);
 font-size: 3em;
 text-align: Center;
 padding: 10px;
 /*background: rgba(128, 0, 102, 0.05);*/
 animation: neonGlow 1.5s infinite alternate cubic-bezier(0.455, 0.030, 0.515, 0.955);
}
@keyframes neonGlow {
 0% {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.7), 0 0 40px rgba(255, 255, 255, 0.7),
  0 0 22px rgba(255, 255, 255, 0.7), 0 0 40px rgba(0, 141, 141, 0.7),
  0 0 60px rgba(0, 141, 141, 0.7), 0 0 80px rgba(0, 141, 141, 0.1),
  0 0 100px rgba(0, 141, 141, 0.1), 0 0 140px rgba(0, 141, 141, 0.1),
  0 0 200px rgba(0, 141, 141, 0.1);
 }
 100% {
 text-shadow: 0 0 2px rgba(255, 255, 255, 0.6), 0 0 1px rgba(255, 255, 255, 0.6),
  0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(0, 141, 141, 0.6),
  0 0 30px rgba(0, 141, 141, 0.6), 0 0 40px rgba(0, 141, 141, 0.6),
  0 0 50px rgba(0, 141, 141, 0.9), 0 0 80px rgba(0, 141, 141, 0.9);
 }
}
