body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f1f1f1;
    /* color: #333; */
    overflow: hidden;
    transition: background-color 0.5s ease;
}


#dashboard { 
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: #0a0a0a;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* imagenes centradas, que no excedan el body y que no se repitan */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* Capa semitransparente */
    background-color: rgba(0, 0, 0, 0.7); /* Cambia el color y la opacidad */
    background-blend-mode: overlay; /* Mezcla el color con la imagen */
}

#homeImg {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100px;
    height: auto;
    cursor: pointer;
}

#tiempo {
    font-size: 50px;
    margin-bottom: 20px;
    /* color del texto en blanco y bold */
    color: #fff;
    font-weight: bold;
    border: 1px solid white;
    border-radius: 10px;
    padding: 20px;
    /* Capa semitransparente */
    background-color: rgba(148, 144, 144, 0.7); /* Cambia el color y la opacidad */
    background-blend-mode: overlay; /* Mezcla el color con la imagen */
}

#tiempo h2 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #0f0f0f;
    font-weight: bold;
}

#tiempo h5 {
    margin-bottom: 10px;
    font-size: 15px;
    color: #0f0f0f;
    font-weight: bold;
}

#tiempo p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}