 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      height: 100vh;
      background-image: url(../images/hero\ section.jpg);
      background-size: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
    }

    .container {
      max-width: 600px;
      padding: 40px 20px;
    }

    h1 {
      font-size: 48px;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    h1 span {
      color: #ffd700;
    }

    p {
        font-size: 16px;
        opacity: 0.9;
        margin: 20px 0 40px;
        max-width: 410px;
    }

    .countdown {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 35px;
    }

    .time-box {
      background: rgba(255, 255, 255, 0.15);
      padding: 15px 20px;
      border-radius: 10px;
      min-width: 80px;
    }

    .time-box h2 {
      font-size: 28px;
    }

    .time-box span {
      font-size: 12px;
      opacity: 0.8;
    }

    .notify-form {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .notify-form input {
      padding: 12px 15px;
      border-radius: 6px;
      border: none;
      outline: none;
      width: 250px;
    }

    .notify-form button {
      padding: 12px 20px;
      border-radius: 6px;
      border: none;
      background: #ffd700;
      color: #000;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
    }

    .notify-form button:hover {
      background: #ffea00;
    }

    footer {
      margin-top: 30px;
      font-size: 13px;
      opacity: 0.8;
    }
    
    @media(max-width: 767px){
        body {
            height: 90vh;
        }
    }