html {
    height: 100%;
}

body {
    height: 100%;
    /*display: grid;*/
    /*grid-template-rows: auto 1fr auto;*/
    background-color: rgb(40, 40, 40);
    color: rgb(185, 185, 185);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#b1 {
    float: none;
}


noscript {
    color: red;
    text-align: center;
    font-size: 1.5em;
}

header {
    display: block;
}

main {
    display: block;
}

footer {
    display: block;
}

#MyClockDisplay {
    color: orange;
    float: left;
}

#Reload {
    color: orange;
    float: right;
}

#f14 {
    background-color: #444;
    border: 1px solid #555;
    border-radius: 6px;
    color: yellow;
    float: right;
    font-size: 1.7em;
    font-weight: bold;
    text-align: right;
    padding-right: 2px;
    padding-left: 2px;
}

.temps{
    display: grid;
    font-size: 6pt;
    float: left;
    padding: 3px;
    margin: 2px;
    background-color: #333;
    border-radius: 4px;
}

#min24, #max24 {
    font-size: 22px;
    text-align: center;
}

#min24{
    color: aqua;
    padding-top: 11px;
}

#ist24 {
    font-size: 30px;
    color: chartreuse;
    text-align: center;
}

#max24{
    color: coral;
    padding-top: 11px;
}

#kopf {
    background-color: #222;
    border-radius: 8px;
    color: orangered;
    font-size: 2em;
    font-weight: bold;
    padding: 1px;
    text-align: center;
}

.ueschrift {
    color: rgb(150, 200, 200);
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    ;
    text-align: center;
}

canvas {
    background-color: #222;
    border-radius: 8px;
}

.canvasse {
    background-color: #111;
    border-radius: 8px;
    margin: 12px;
    padding: 1px;
}

.dt {
    color: #ddd;
    text-align: right;

    font-size: 0.8em;
    padding-top: 3px;
    padding-bottom: 2px;
}

a,
a:visited {
    color: rgb(90, 90, 255);
    text-decoration: none;
}

a:hover {
    color: rgb(185, 185, 185);
    background-color: rgb(90, 90, 255);
    text-decoration: none;
}

#aktuell {
    display: table;
    /*float: left;*/
    background-color: #222;
    border-radius: 8px;
    /*margin: 1px;*/
    /*padding: 1px;*/
    /*width: calc(100% - 10px);*/
    width: 100%;
    margin-bottom: 16px;

}

.werte {
    display: table-column;
    float: left;
    background-color: #333;
    border-radius: 8px;
    padding: 6px;
    width: calc((100% - 70px) / 5);
    margin-right: 2px;
    font-size: calc(8px + (14 - 8) * ((100vw - 320px) / (1600 - 320)));
}


.werte1 {

    float: left;
    background-color: #333;
    border-radius: 8px;
    font-size: calc(8px + (14 - 8) * ((100vw - 320px) / (1600 - 320)));
    width: 100%;
    margin-right: 2px;
    margin-top: 2px;
}

.left {
    display: table-cell;
    text-align: left;
    float: left;

    padding-left: 8px;
}

.right {
    display: block;
    text-align: right;
    float: none;

    padding-right: 8px;
    font-size: 1.2em;
    color: orange;
}

p {
    display: block;
    text-align: justify;
    /*background-color: burlywood;*/

}

#w {
    width: 100%;
    float: none;
    padding: 6px;
    padding-left: 12px;
}


/* +++++++++++++++++++++++ TOGGLE SWITCH - START +++++++++++++++ */
.switch {
    position: relative;
    /*display: inline-block;*/
    width: 50px;
    height: 24px;
    float: right;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}




/* Rounded sliders */
.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}