/* General Styles */
/* body {
    font-family: Arial, sans-serif;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  } */
  
  /* Container styling */
  /* .container {
    text-align: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
   */
  #headline {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #01A8B7;
    text-align: center;
    font-family: "Abigate";
  }
  
  /* Timer styling */
  .timer-main ul {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .timer-main li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    font-size: 1.2rem;
    color: #444;
  }
  
  .li-style span {
    font-size: 2rem;
    font-weight: bold;
    color: #01A8B7;
    margin-bottom: 5px;
    font-family: "Abigate";
  }
  
  /* Emoji styling */
  .emoji {
    margin-top: 20px;
    font-size: 2rem;
  }


  @media screen and (max-width: 767px) {
    #headline{
        font-size: 20px;
    }
  }
  