    body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  
  .hero {
    position: relative;
    height: 100vh;
    background: url('img/318e8dda-f570-429e-aee9-ed6b39ece751.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    z-index: 2;
    padding-top: 40px; /* optional spacing */
  }

    .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1; 
  }
  
  .heading1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: #fff;
    margin-top: 5px;
    margin-bottom: 0;
  }

  h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
  }

  .paragraph, .counter {
    font-family: 'Open Sans', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-top: 0;
  }

  #countdown {
    font-family: 'Oswald', sans-serif;
    color:rgb(179, 182, 1);
  }

  .points{
   
    color:#fff;
    margin-top: 0;
   text-align: center;
  }
 
  .points .fa-solid{
    color: rgb(179, 182, 1);
  }

  .points ul{
    list-style-type: none;
    margin-top: 20px;
    text-align: left;
  }

  .points ul li {
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
  }

 

        .button a {
	        display: inline-block;
          font-family: 'Oswald', sans-serif;
            padding: 15px 30px;
            background-image: linear-gradient(to top, rgb(159, 119, 189) , rgb(88, 1, 135)); 
            color: #fff;
            font-size: 40px;
            line-height: 48px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            animation: buttonAnimation 2s infinite;
            text-decoration: none;
        }

        .button a:hover{
            animation-play-state: paused;
        }


        @keyframes buttonAnimation {
            0% {
                transform: scale(1);
                background-color: blue;
            }
            50% {
                transform: scale(1.2);
                background-color: red;
            }
            100% {
                transform: scale(1);
                background-color: blue;
            }
        }


/*Mobile Responsive*/
  
  @media (max-width: 480px) {
    .heading1 {
      font-size: 2.5rem;
    }

    .paragraph {
      font-size: 1.5rem;
    }
  
    .button a{
      font-size: 22px;
      padding:10px 40px;
    }
    
    .counter{
        font-size: 1.4rem;
        margin-top: 20px;
    }
  }
  .blink {
    font-size: 22px;
    color: white;
    text-decoration: none;
   padding: 20PX;
   border-radius: 5px;
   
    animation: blink-animation 1s  infinite;
    
  }
  @keyframes blink-animation {
    0% {
      background-color: rgb(108, 104, 104);
    }
    30% {
      background-color: rgb(108, 104, 104);
    }
    50% {
      background-color: rgb(0, 191, 255);
    }
    70% {
      background-color: rgb(108, 104, 104);
    }
    100% {
      background-color: rgb(108, 104, 104);
    }
  }
 
  .martop{
    margin-top: 30px;
  }