diff --git a/css/styles.css b/css/styles.css
index d844728..008b5e3 100644
--- a/css/styles.css
+++ b/css/styles.css
@@ -54,6 +54,21 @@ nav ul li {
margin-right: 20px;
}
+.reloj-div a {
+ color: white;
+ text-decoration: none;
+ transition: 0.3s;
+ padding: 1rem;
+}
+
+.reloj-div a:hover {
+ color: #ff4081;
+ cursor: pointer;
+
+ border-radius: 2rem;
+ background-color: white;
+}
+
.search-span {
display: flex;
justify-content: center;
diff --git a/index.html b/index.html
index 6e11e5c..eb91117 100644
--- a/index.html
+++ b/index.html
@@ -28,6 +28,12 @@
+
@@ -270,6 +276,8 @@ SEGUINOS
+
+
diff --git a/js/apis/reloj.js b/js/apis/reloj.js
new file mode 100644
index 0000000..3c9cca7
--- /dev/null
+++ b/js/apis/reloj.js
@@ -0,0 +1,19 @@
+async function obtenerHoraDelServidor() {
+ try {
+ const respuesta = await fetch('http://worldtimeapi.org/api/timezone/America/Argentina/Buenos_Aires');
+ const datos = await respuesta.json();
+ return datos.datetime.slice(11, 19); // Extraer solo la hora (HH:MM:SS)
+ } catch (error) {
+ console.error('Error al obtener la hora del servidor:', error);
+ return 'Error';
+ }
+}
+
+async function actualizarReloj() {
+ const hora = await obtenerHoraDelServidor();
+ const reloj = document.getElementById('reloj');
+ reloj.textContent = hora;
+}
+
+setInterval(actualizarReloj, 1000);
+actualizarReloj();
\ No newline at end of file