/* Global Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f5f5; /* Change to light mode background color */
    color: #333; /* Change to light mode text color */
    transition: background-color 0.3s ease-in-out;
  }
  
  .livepage {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
  }
  
  .countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8); /* Change to light mode background color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1px);
  }
  
  .countdown > div:first-child {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  #timer {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #timer > div {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(34, 34, 34, 0.8); /* Change to a darker color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
  }
  
  #timer > div:first-child {
    animation: countdown 10s linear infinite;
  }
  
  @keyframes countdown {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Animations */
  
  .livepage {
    animation: fadeIn 1s ease-out;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  /* Responsive Styles */
  
  @media (max-width: 768px) {
    .countdown {
      font-size: 32px;
    }
  
    #timer > div {
      width: 40px;
      height: 40px;
    }
  }
  
  @media (max-width: 480px) {
    .countdown {
      font-size: 24px;
    }
  
    #timer > div {
      width: 30px;
      height: 30px;
    }
  }