/* Style.CSS für alle Seiten unter ROOT  */

/* Tabelle  */
td {
        text-align: left;
        vertical-align: middle;
        font-family:Tahoma;
        font-weight: bold;
        font-size:12px;
        color: #E5E5E5;
}

/* Text underline  */
a {
        text-decoration: underline;
        color:#6B70BD;
}

/* Mouse over Hyüerlinks  */
A:Hover  {
        color : #9EA3DE;
        text-decoration : underline;
}

/* Überschriften  */
H2 {
        color: #AF00FF;
        font-weight: bold;
        font-size : 16px;
        font-family:Tahoma;
}

H3 {
        color: #2A6DEF;
        font-weight: bold;
        font-size : 20px;
        font-family:Tahoma;
}

/* Globaler Body Background  */
body {
  background-color: #000000;
}

/* Schrift unter <p></p>  */
p {
        font-family:Tahoma;
        font-weight: bold;
        font-size:12px;
        color: #FFFFFF;
}

 /* Bilder abdunkeln  100% nichts, 0% schwarz */
.bild-abgedunkelt {
    filter: brightness(80%); /* Hier Wert nach Wunsch anpassen */
}

 /* Bilder mit runden Ecken */
    img {border-radius: 9px;
    }

 