/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff; /* White background */
    color: #000000; /* Black text */
    text-align: center;
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  
  h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #0056b3; /* Blue accent for the title */
  }
  
  .countdown {
    background: #e6f2ff; /* Light blue background */
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  }
  
  #countdown-time {
    font-size: 2em;
    font-weight: bold;
    color: #0056b3; /* Blue text for countdown */
  }
  
  .variables {
    background: #f9f9f9; /* Light gray background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  }
  
  .variables h2 {
    margin-bottom: 10px;
    color: #0056b3; /* Blue accent for headers */
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  li {
    margin: 10px 0;
    font-size: 1.2em;
  }
  
  span {
    font-weight: bold;
    color: #000000; /* Black for variable values */
  }
  
  footer {
    margin-top: 30px;
    font-size: 0.8em;
    opacity: 0.7;
    color: #666666; /* Gray text for footer */
  }
  