body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Set height to fill the viewport */
  }
  
  #time {
    font-size: 4rem; /* Adjust font size as needed */
    margin: 20px auto;
    padding: 20px;
    border: 2px solid #333;
    border-radius: 10px;
    width: 80%; /* Set width to a percentage for responsiveness */
    max-width: 400px; /* Set maximum width for larger screens */
  }