body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  color: #f1faee;
  transition: background 1s linear;
}

.clock-container {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 50px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#clock {
  font-size: 64px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

#date {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .clock-container {
    padding: 15px 30px;
  }

  #clock {
    font-size: 48px;
  }

  #date {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  #clock {
    font-size: 36px;
  }

  #date {
    font-size: 14px;
  }
}
