body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin-top: 100px;
  background-color: #f9f9f9;
}

#clock {
  font-size: 48px;
  color: #333;
  padding: 20px;
  border: 2px solid #333;
  border-radius: 10px;
  display: inline-block;
  min-width: 200px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

#updateButton {
  padding: 10px 20px;
  font-size: 18px;
  color: white;
  background-color: #28a745;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#updateButton:hover {
  background-color: #218838;
}
