 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Poppins', sans-serif;
 }

 body {

     overflow: auto;
     overflow-x: hidden;
     display: flex;
     justify-content: center;
     align-items: center;
     background: linear-gradient(135deg, #fffdf8, #fff5de, #ffe6b2);
     position: relative;
     padding: 20px;
    height: 100%;
    width: 100%;
    margin-bottom: 30px;
    margin-top: 20px;

 }

 /* Background circles */

 .circle {

     position: absolute;
     border-radius: 50%;
     background: rgba(255, 193, 7, .12);
     animation: float 8s infinite ease-in-out;

 }

 .c1 {

     width: 280px;
     height: 280px;
     left: -70px;
     /* top: -70px; */

 }

 .c2 {

     width: 220px;
     height: 220px;
     right: -60px;
     bottom: 10px;

     animation-delay: 2s;

 }

 .c3 {

     width: 150px;
     height: 150px;
     top: 12%;
     right: 18%;

     animation-delay: 5s;

 }

 @keyframes float {

     50% {
         transform: translateY(-25px);
     }

 }

 /* Leaf */

 .leaf {

     position: absolute;
     font-size: 40px;
     opacity: .15;

     animation: rotate 10s infinite linear;

 }

 .l1 {

     top: 8%;
     left: 15%;

 }

 .l2 {

     right: 10%;
     bottom: 15%;

 }

 @keyframes rotate {

     100% {
         transform: rotate(360deg);
     }

 }

 /* Card */

 .container {

     background: rgba(255, 255, 255, .82);

     backdrop-filter: blur(12px);

     padding: 40px;

     border-radius: 28px;

     box-shadow: 0 20px 60px rgba(0, 0, 0, .08);

     text-align: center;

     width: 90%;
     max-width: 760px;
     min-height: 650px;

     z-index: 5;

 }

 .logo {

     width: 200px;
     height: auto;
     display: block;
     margin: 0 auto 20px;
     ;

 }

 h1 {

     font-size: 58px;
     color: #2b2b2b;
     font-weight: 800;
     margin-bottom: 10px;

 }

 .tag {

     font-size: 19px;
     color: #3c3c3c;
     margin-bottom: 10px;

 }

 .launch {

     color: #ff9800;
     font-weight: 700;
     font-size: 22px;
     margin-bottom: 35px;

 }

 .countdown {

     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-bottom: 35px;

 }

 .box {

     background: white;
     padding: 20px;
     border-radius: 20px;
     box-shadow: 0 8px 25px rgba(0, 0, 0, .08);

 }

 .box h2 {

     font-size: 42px;
     color: #ff9800;

 }

 .box span {

     color: #666;
     font-weight: 500;

 }

 .message {

     font-size: 17px;
     color: #666;
     line-height: 1.7;
     margin-bottom: 30px;

 }

 .btn {

     display: inline-block;
     padding: 16px 40px;

     background: #ffb300;
     color: white;

     text-decoration: none;
     border-radius: 50px;

     font-weight: 600;

     transition: .3s;

 }

 .btn:hover {

     background: #fb8c00;
     transform: translateY(-3px);

 }

 .footer {

     margin-top: 35px;
     font-size: 14px;
     color: #999;

 }

 @media(max-width:700px) {
    body{
        padding: 20px;
    }

     h1 {

         font-size: 40px;

     }

     .countdown {

         grid-template-columns: repeat(2, 1fr);

     }

     .container {

         padding: 25px;
         width: auto;

     }
     .circle,.c1, c2, c3{
        display: none;
     }

 }
