body{
    background:#dedede
}
.navBar{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
#horaActual{
    font-size: 5em;
    font-family: Orbitron;
}
#horaActual > span{
    width: 1.5em;
    position: relative;
    display: inline-flex;
    justify-content: center;
    margin: 0 .15em;
}
.redCheck{
    background:#d74a4aab;
    padding: .25em 2em;
}
.greenCheck{
    background: #008000b0;
    padding: .25em 2em;
}
.greenCheck label, .redCheck label{
    width:100%;
    font-weight: bold;
}
table, td, th {
    border: 1px solid;
    padding: .5em 1em;
}
@media (prefers-color-scheme: dark) {
    body{
        background-color: #312e3e;
        color:white;
    }
}