    body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  
  .hero {
    position: relative;
    height: 100vh;
    background: url('../images/gdd.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
    
  }

    .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-bottom: 0;
  }

  h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin-top: 5px;
   
  }

  .paragraph{

    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #fff;
    margin-top: 0;
  } .counter {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: rgb(153, 153, 153);
    margin-top: 0;
  }

  #countdown {
    font-size: 3rem;
    font-family: 'Oswald', sans-serif;
    color:#06fa90;
  }

  .points{
    color:#fff;
    margin-top: -20px;
  }

  .points .fa-solid {
    color: #06fa90;
  }

  .points ul{
    list-style-type: none;
    margin-top: px;
    text-align: left;
  }

  .points ul li {
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
  }

  
        .button a {
	        display: inline-block;
          font-family: 'Oswald', sans-serif;
            padding: 15px 30px;
            background-color: #244829;
            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);
            }
            50% {
                transform: scale(1.1);
              
            }
            100% {
                transform: scale(1);
               
            }
        }
        .mgbt{
          margin-bottom: 15px;
        }
      


/*Mobile Responsive*/
  
  @media (max-width: 480px) {
    .heading1 {
      font-size: 1.8rem;
      
    }

    .paragraph {
      font-size: 1.5rem;
    }
  
    .button a{
      font-size: 22px;
      padding:10px 40px;
    }
    
    .counter{
      margin-top: 10px;
        font-size: 1rem;
        
    }
  }
  h1{
    margin-top: -150px;
  }