body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
   background-color: rgba(52, 152, 219, 0.0);

.countdown-container {
  display: flex;
  gap: 20px;
  background: #17a6f0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.time-segment {
  text-align: center;
}

.time-segment span {
  display: block;
  font-size: 2em;
  font-weight: bold;
}

.time-segment p {
  margin: 0;
  font-size: 1em;
  color: #fff;
}
