/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    font-family: Arial, sans-serif;
    background-color: #550000;
    color: #FFDE21;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
  }
  
  /* Container Styling */
  .container {
    max-width: 600px;
    padding: 20px;
  }
  
  /* Badge Styling */
  .badge-container {
    margin-bottom: 20px;
  }
  .badge {
    width: 200px;
    height: 200px;
    /* object-fit: contain;
    border-radius: 50%;
    border: 4px solid #FFDE21; */
  }
  
  /* Heading Styles */
  h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
  }
  h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  /* Countdown Styles */
  .countdown {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    font-size: 1.5rem;
  }
  .countdown div {
    text-align: center;
  }
  .countdown span {
    font-size: 2.5rem;
    display: block;
    font-weight: bold;
  }
  
  /* Footer Message */
  p {
    margin-top: 20px;
    font-size: 1rem;
  }
  
  .white-text {
      color: white;
  }
  .gray-text {
      color: gray;
  }