/* styles.css */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
}

#reloj-container {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
    box-sizing: border-box;
}

#reloj h1 {
    font-size: 3em;
    margin: 0;
    font-weight: 300;
    color: #333;
}

#hora-usuario {
    font-size: 1.2em;
    color: #555;
    margin-top: 5px;
}

#clima {
    margin-top: 20px;
    font-size: 1.2em;
    color: #555;
}

#temperatura {
    font-size: 1.5em;
    font-weight: bold;
}

#descripcion-clima {
    font-style: italic;
    margin-top: 5px;
}
