body {
    background-color: #000;
    color: #fff;
    font-family: 'Audiowide', cursive;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
aside {
    font-size: 11pt;
    text-align: center;
    margin-bottom: 0.5em;
    color:brown;
    position: absolute;
    top: 0;
    right: 0;
}
hr {
    margin-top: 0.2em;
    border: none;
    border-top: 1px solid brown;
}
button {
    height: 2.5em;
    background-color: brown;
    border: none;
    outline: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 8px;
    font-size: 11pt;
    border-radius: 4px;
    margin-bottom: 8px;
    cursor: pointer;
}
button:hover {
    border: 2px solid white;
    background-color: rosybrown;
}
#refresh-btn {
    display: none;
    position: absolute;
    top: 0;
    left: auto;
    right: 25%;
}
#tmt-odo {
    margin: 0 0 0.1em 0;
    font-weight: 100;
}
.fa-envira {
    color: forestgreen;
}

.tmt-infos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.tmt-info {
    flex: 0 0 50%;
    max-width: 50%;
    font-size: 14pt;
    margin-top: 0.1em;
    margin-bottom: 0.1em;
    line-height: 1.6;
    position:relative;
    height: 1.4em;
}
.tmt-info .tmt-info-ico {
    display: inline-block;
    font-size: 16pt;
    margin-top: 3px;
    color: grey;
}
.tmt-info .tmt-info-val {
    display: inline-block;
    position:absolute;
    left: 1.7em;
}
.tmt-tit {
    color:brown;
}
.tmt-val {
    font-size: 13pt;
}
.tmt-val-mini {
    font-size: 12pt;
    color: gray;
}
.tmt-battery-decs {
    font-size: 10pt;
}
#tmt-top {
    position: relative;
}

h1 {
    text-align: center;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    font-size: 20pt;
}
h1 span {
    color:brown;
}
h2 {
    margin-top: 0.3em;
    margin-bottom: 0.1em;
    font-size: 20pt;
    text-align: left;
    font-weight: 100;
}
h2 i {
    color: brown;
}

h3 {
    margin: 0 0 0 0;
    text-align: left;
    font-weight: 100;
}
h3.sectiontitle {
    margin: .6em 0 .4em 0;
    text-align: center;
}
h3 i {
    color: brown;
}
h3 .tmt-val-mini {
    float: right;
    margin-top: 6px;
    margin-right: 2px;
}
.tmt-container {
    justify-content: center;
}
.tmt-block {
    background: #fff;
    color: #000;
    margin: .5em .3em .5em .3em;
    padding: .4em .6em .1em .6em;
    border-radius: .5em;
    box-shadow: 1px 1px 4px Silver;
}
.tmt-block:hover {
    box-shadow: 2px 2px 8px Brown;
    background-color: azure;
}

#tmt-charging-block {
    display: none;
}
#tmt-status-bar {
    position: relative;
    display: flex;
    margin-bottom: 4px;
}
#tmt-temps i {
    font-size: 15pt;
}
.tmt-temp {
    display: inline-block;
    margin-right: 15px;
}
#tmt-battery {
    position: absolute;
    right: 0;
}
    #tmt-battery-icon {
        height: 25px;
        position: absolute;
        top: 0;
        right: 0;
    }
    #tmt-battery-level {
        position: absolute;
        top: 3px;
        right: 8px;
        width: 57px;
        line-height: 1.2;
        text-align: center;
        font-size: 12pt;
        color: #000000aa;
    }
#tmt-charge-icon {
    position: absolute;
    top: 3px;
    right: 80px;
    font-size: 17pt;
    color: #ccc;
    
}
#tmt-charge-icon.charging {
    animation: colorChanger 2s infinite;
}

@keyframes colorChanger {
    from {
        color: #ffeb00;
    }
    50% {
        color: #aaaa90;
    }
    to {
        color: #ffeb00;
    }
}

}
