body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-image: url('Mask group.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
  }
  header, footer {
    text-align: center;
    padding: 10px 0;
  }

  main {
    padding: 20px 0;
    text-decoration: none;
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .launch-title {
    color: #FFFFFF;
    width: 151;
    height: 30;
    top: -74925px;
    left: -33063px;
    /* font-family: Poppins; */
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
  }
  .launch-subtitle {
    width: 520;
    height: 75;
    top: -74868px;
    left: -33238px;
    /* font-family: Poppins; */
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
  }
  .pov-logo2 {
    width: 200px;
    height: 80px;
    top: -74780px;
    left: -33101px;    
  }
  .calendar-bar {
    width: 690;
    height: 139;
    top: -74638px;
    left: -33323px;
  }
  .outer-wrapper {
    padding: 3px; /* Border thickness */
    border-radius: 20px;
    background: linear-gradient(45deg, yellow, green);
    max-width: 50%;
    margin: 30px auto 0;
  }
  
  .countdown-wrapper {
    background: #000;
    border-radius: 17px; /* slightly smaller */
    padding: 20px 30px;
    color: #fff;
    box-shadow: 0 0 20px #00ff00;
    box-sizing: border-box;
    height: 100px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
  }
    
  .timer {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .timer div {
    text-align: center;
    background-color: #00ff00;
    color: #000;
    font-weight: bold;
    font-size: 12px;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: auto;
  }
  
  .timer span {
    display: block;
    font-size: 20px;
  }
  
  .calendar-btn {
    margin-left: auto;
    margin-inline-end: auto;
    background-color: yellow;
    color: black;
    padding: 12px 30px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    align-items: center;
    width: 200px;
  }
  
  .calendar-btn:hover {
    background-color: #ffe600;
  }
  
  
  .countdown-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  .timer-wrapper {
    display: flex;
    gap: 20px;
  }
  
  .timer-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2px;
  }
  
  .timer-digits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1px;
  }
  
  .timer-box {
    background-color: #2bff00;
    border-radius: 10px;
    color: #000;
    font-size: 25px;
    font-weight: bold;
    width: 33px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Courier New', monospace;
    margin-right: 2.5px;
  }
  .timer-box:last-child {
    margin-right: 0;
  }  
  
  .timer-label {
    color: white;
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: -5px; /* override any default spacing */
  }
  
  @media (max-width: 600px) {
    .outer-wrapper {
      max-width: 100%;
      padding: 2px;
    }
  
    .countdown-wrapper {
      display: flex;
      flex-direction: flex-start;
      flex-wrap: nowrap;
      /* justify-content: center; */
      align-items: center;
      /*height: auto;  Let height grow */
      height: 60px; /* Fixed height for mobile */
      padding: 10px;
      padding-bottom: 40px;
      padding-top: 20px;
    }
  
    .timer-wrapper {
      display: flex;
      flex-wrap: nowrap;
      gap: 7px;
      justify-content: center;
      /* margin-left: 20px; */
    }
  
    .timer-box {
      width: 15px;
      height: 20px;
      font-size: 13px;
      border-radius: 5px;
    }

    .timer-label {
      color: white;
      font-size: 9px;
      margin-top: -5px;
    }
  
    .calendar-btn {
      width: 120px;
      margin-top: 15px;
      font-size: 10px;
      padding: 8px 15px;
      border-radius: 10px;
      /* margin-right: 20px; */
    }
  
    .launch-subtitle {
      font-size: 24px;
    }
  
    .launch-title {
      font-size: 20px;
    }
  
    .pov-logo2 {
      width: 150px;
      height: auto;
    }
  }

  @media (min-width: 601px) and (max-width: 1024px) {
  .outer-wrapper {
    max-width: 80%;
    padding: 3px;
  }

  .countdown-wrapper {
    flex-direction: row;
    height: 80px;
    padding: 15px 20px;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
  }

  .timer-wrapper {
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: center;
    margin-left: 40px;
  }

  .timer-box {
    width: 25px;
    height: 32px;
    font-size: 16px;
    border-radius: 6px;
  }

  .timer-label {
    font-size: 12px;
    margin-top: -2px;
  }

  .calendar-btn {
    width: 160px;
    font-size: 12px;
    padding: 10px 20px;
    border-radius: 10px;
    margin-right: 50px;
  }

  .launch-subtitle {
    font-size: 32px;
    line-height: 100%;
  }

  .launch-title {
    font-size: 18px;
  }

  .pov-logo2 {
    width: 180px;
    height: auto;
  }

  main {
    padding: 20px 0;
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .countdown-container {
    margin-top: 20px;
  }
}

