html, body {
    margin:0;
    padding:0;
    width:100%;
    height:100%;
}

body {
    margin: auto;
    background-image: url(Ticker.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    font-size: 18px;
    text-align: center;
    max-width: 850px;
    font-family: Arial, Helvetica, sans-serif;
}

.rki {
      -webkit-filter: brightness(150%) saturate(100%) hue-rotate(260deg) contrast(40%) invert(1);
      text-align:center;
    }

.uptime {                           /* fungiert quasi als class="innendiv" */
    color: #FE2E64;
    font-size: 12px;
    font-weight:bold;
    width: 170px;
}

#aussendiv {                        /* drei div nebeneinander */
    display: flex;
    justify-content:center;
}

.innendiv { 
    width:10px; 
}

.innendiv2 { 
    height:5px; 
    margin-top: -0.4rem;
    margin-left: -0.4rem;
}

.button {
    color: #FE2E64;
    font-size: 16px;
    font-weight:bolder;
    border:none;
    border-radius: 50%;
    background-color: rgba(0,0,0,0);
}

.button:hover {
    color: #D0A9F5;
    font-weight:bolder;
    cursor: pointer;
}

.datum_ip {                         /* Aussehen des gehoverten Textfeld über deploy */
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    opacity:0;
    padding-top: 0.5em;
    padding-left: 0.5em;
    padding-right: 0.5em;
   
    top:5%;                         /*Position des gehooverten Fensters */
    left: 50%;                      /*linke kante des elementes auf 50% vom bildschirm */
    transform: translateX(-50%);    /* element um 50% seiner breite nach links verschieben */
    z-index: 2;
    /* Siehe auch: navbar.css */
    box-shadow: 2px 3px 5px #34BCCA inset;
    border-radius: 5px;
    border: thin solid darkgreen;
    background-color: rgba(0,0,0,0.75);
    text-shadow:none;
    color: darkgreen;               /* muss die gleiche Farbe haben wie gehovert, sonst sieht man das */
    white-space: nowrap;            /* keinen Zeilenumbruch erzwingen */
    max-width: 90vw;                /* maximale Breite gemessen am viewport */
    overflow:hidden; 
    transition: all 1s ease;        /* fade out */


}
/* Style der grosse Überschriften; auch deploy */
h1 {
    color: #34BCCA;
    text-shadow: 1px 1px 5px #FE2E64;
    margin-bottom: 0.3em;
    margin-top: 0;
    padding-top: 0.6em;
}

h1 img {
    vertical-align: middle;
}
/* Farbe der Überschrift deploy */
h1.h0 {
    width: min-content;                 /* mindestens so breit wie der Inhalt */
    margin-left: auto;
    margin-right: auto;
    color: #04B404;
}


h1.h0:hover > .datum_ip {
    opacity: 1;
    transition: all 0.1s ease-out;        /* fade in */
    color: darkgreen;                     /* Textfarbe im gehoverten Fenster */

}

h2 {
    color: #34BCCA;
    font-size: 18px;
    margin-top:1em;
    margin-bottom:0.5em;
}

h1 a {
    color: #34BCCA;
}

h2 a {
    color: #D0A9F5;

}

h2.linkhoch {
    text-align: left;
    margin-left: 15%;
}

h3 {
    color: #D0A9F5;
    text-align: center;
    font-size: 14px;
}

h4 {                                        /*für Infos etc.*/
    color: yellow;
    font-size: 14px;
    font-weight:normal;
    font-style: italic;
    margin-bottom: 1.25;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.warnlink {                                 /* ähnlich wie h4*/
    color: yellow;
    font-size: 14px;
    font-weight:normal;
    font-style: italic;
    text-decoration:underline;
    display: block;			   /* weil <a>  per default kein block-element ist */
    margin-bottom: 1.25em;
    width: max-content;
    height: 1.12em;
    margin-left: auto;
    margin-right: auto;
}

/* wie sollen die Links aussehen */
a { 
    color: #D0A9F5;
    text-decoration: underline;
}
/* was passiert beim hovern der Links */
a:hover {
    color: #FE2E64;
}

a img {
    border:none;
}
/* Styles für iframes (Wetter etc.) */
.onecol, .twocol, .threecol {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.twocol iframe {
    background-color: lightblue;
    width: 100%;
    max-width: 400px; 
    height: 250px;
    margin: auto;
    display: inline-block; 
}

.onecol iframe {
    width: 100%;
    max-width: 800px;
    height: 500px;
}

.onecol img {
    width: 100%;
    max-width: 800px;
}
/* ab hier sind die Styles für  auf der Startseite */

div.bildyr {                                /* @media screen and (max-width: 100%) */
    width:600px;
    height:300px;
    overflow:hidden;
    margin: auto;
} 

div.bildyr img {
    width:600px;
    height:350px;
    margin-top:-70px;
}

/* das Meteogramm von dtn in transparent */

.dtn {
    mix-blend-mode: color-dodge;
    filter: invert() brightness(1.4) contrast(120%) saturate(2) hue-rotate(120deg);                         
    width:600px;
    height:400px;
    overflow:hidden;
    margin: auto;
}
.dtn img {
    width:600px;
    height:450px;
}

@media screen and (max-width: 850px) {

div.bildyr {
    height: 310px;
    width: 600px;
}

div.bildyr img {
    height: 220px;
    width: 600px;
}

.dtn {
    mix-blend-mode: color-dodge;
    filter: invert() brightness(1.5) contrast(120%) saturate(2) hue-rotate(115deg);                          
    width:600px;
    height:280px;
    overflow:hidden;
    margin-top:-100px;
}
.dtn img {
    width:600px;
    height:320px;
}

@media screen and (max-width: 600px) {

div.bildyr {
    height: 300px;
    width: 400px;
}

div.bildyr img {
    height: 300px;
    width: 400px;
    margin-top:-70px;
}

.dtn {
    mix-blend-mode: color-dodge;
    filter: invert() brightness(1.5) contrast(120%) saturate(2) hue-rotate(115deg);                          
    width:400px;
    height:280px;
    overflow:hidden;
    margin-top:-50px;
}
.dtn img {
    width:400px;
    height:320px;
}

@media screen and (max-width: 360px) {        /* angepasst an das Samsung S20 */

div.bildyr {
    height: 280px;
    width: 360px;
    margin-top:-70px;
}

div.bildyr img {
    height: 280px;
    width: 360px;
    margin-top:-70px;
}

.dtn {
    mix-blend-mode: color-dodge;
    filter: invert() brightness(1.4) contrast(120%) saturate(2) hue-rotate(120deg);                           
    width:360px;
    height:260px;
    overflow:hidden;
    margin: auto;
}
.dtn img {
    width:360px;
    height:260px;
}
