* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body, html {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container {
    
    background: linear-gradient(180deg, #FFD700 , #F2BF26);
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 580px;
    width: 100%;
    padding: 20px;
  } 
  .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    
  }
  
  h1 {
    font-size: 36px;
    color: #37373A;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  p {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
    font-weight: 400;
    margin-bottom: 34px;
    color: #37373A;
  }
  
  .countdown {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
  }
  
  .time-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 8px;
    width: 69px;
    height: 82px;
    border: 1px solid rgba(255, 255, 255, 0.4);;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #37373A;

  }
  
  .time-box span {
    display: block;
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: 0;
  }
  
  .time-box small {
    font-size: 15px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -2%;
  }
  
  .logo img {
    width: 250px;
    height: auto;
    align-self: flex-end;
  }
  