/* Basic setup */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: 
  font-family: 'Orbitron', sans-serif;
}

/* Clock container */
.clock-container {
  display: flex;
  justify-content: center;
  align-items: center;
  
}


/* Clock design */
.clock {
  background: rgba(0, 0, 0, 0.7);
  background: gold;
  
  padding: 50px 80px;
  border-radius: 25px;
  box-shadow: 0 0 40px rgba(0,0,0,0.2);
  text-align: center;
  
}

/* Time numbers */
.time {
    position: relative;
    top: 100px;
  font-size: 5rem;
  color: #00ffcc;
  text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc, 0 0 40px #00ffcc;
  letter-spacing: 5px;
  font-weight: 700px;
}

/* AM/PM design */
.ampm {
  margin-top: 15px;
  font-size: 2rem;
  color: #ff0099;
  text-shadow: 0 0 10px #ff0099, 0 0 20px #ff0099;
}