body {

  color: #f0e6d2;
  font-family: 'Cinzel', serif;
  background-image: url('../Images/apibkgrnd.jpg');
  background-size: cover;
  background-attachment: fixed;
}

header {
  padding: 1rem 2rem;
  background: linear-gradient(145deg, #3a3a3a, #1f1f1f);
  color: #f0c674;
  border: 2px solid #f0c674;
  border-radius: 8px;
  text-align: center;
  font-family: 'Cinzel', serif; 
  color: #f0e6c0; 
  text-shadow: 1px 1px 3px #000, 0 0 5px #c4a000; 
}

.clock-container {
  display: flex;
  justify-content: space-around;
  margin: 2rem;
}

.circle {
  border: 4px solid #a67c52;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2e2e2e;
  box-shadow: 0 0 20px #a67c52;
  font-size: 1.2rem;
  text-align: center;
}



select {
  padding: 0.5rem;
  font-size: 1rem;
  background: #3e3e3e;
  color: #f9f9f8;
  border: 2px solid #a67c52;
}

.clock-face {
  position: relative;
  width: 100%;
  height: 100%;
}

.hour-hand,
.minute-hand,
.second-hand {
  position: absolute;
  left: 50%;
  transform-origin: bottom center;
  background: #fff;
}

.hour-hand {
  width: 6px;
  height: 40px;
  background: #dfb11c;
  top: 30px;
}

.minute-hand {
  width: 4px;
  height: 60px;
  background: #cc5d13a1;
  top: 20px;
}

.second-hand {
  width: 2px;
  height: 70px;
  background: #32cd32;
  top: 10px;
}

.chrono-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.chrono-btn {
  padding: 1rem 2rem;
  background: linear-gradient(145deg, #3a3a3a, #1f1f1f);
  color: #f0c674;
  border: 2px solid #f0c674;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chrono-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #f0c674;
}
.api-output h2 {
  text-align: center;
}
 #history-event {
      margin-top: 1em;
      padding: 1em;
      background: #222;
      color: #eee;
      border-radius: 8px;
    }
    footer {
  margin-top: 80px; 
}
