@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


body {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  background-color: #111;
  color: #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.clock-container {
  background: #222;
  border-radius: 15px;
  padding: 40px 20px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  border: 3px solid #444;
  width: 30%;
}

.time, .ampm, .date {
  display: block;
  font-size: 32px;
  text-align: center;
}

.time {
  font-size: 5rem;
  color: #00ff99;
}

.ampm {
  font-size: 48px;
  color: #ff3333; 
}

.date {
  font-size: 40pxrem;
  color: #aaa;
}
