body {
    --ThemeColor: rgb(0, 187, 22);
    --ThemeColor_rgba: rgba(0, 187, 22, 0.5);

    background: linear-gradient(270deg, var(--ThemeColor) 0%, #000851 25%,  #000851 75%,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: 650px;
    margin: auto;
    margin-top: 25px;
    margin-bottom: 25px;
    z-index: 9;
}

.TextContainer p {
    margin: 0 20px 0 20px;
    color: beige;
    text-align: center;
}

.TextContainer p a {
    color: aquamarine;
}



.flexcontainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.flexitem {
    align-self: auto;
    align-items: flex-start;
    background-color: var(--ThemeColor_rbga);
    border-radius: 15px;
    border: var(--ThemeColor);
    border-style: solid;
}

.flexcontainer p {
    margin: 0 20px 0 20px;
    color: beige;
    text-align: center;
}
ul#menue2 li a {
    color: var(--ThemeColor);
    text-decoration: None;
    background-color: var(--ThemeColor_rgba);
    border: 1px Solid var(--ThemeColor);

}

ul#menue2 li a:hover,
ul#menue2 li a:active {
    color: var(--ThemeColor);
    -webkit-box-shadow: 0px 0px 20px 15px var(--ThemeColor_rgba);
    box-shadow: 0px 0px 20px 15px var(--ThemeColor_rgba);
    background-color: transparent;
    cursor: Pointer;
}
