html {
    display: block;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    z-index: -100;
    


}

body a{
  text-decoration: none;
}

.no-underline {
    text-decoration: none;
}

h2 {
    color: rgb(255, 255, 255);
}

.much_btn {
    position: relative;
    top: 10px;
    font-size: 17px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1em 2.5em;
    display: inline-block;
    cursor: pointer;
    border-radius: 6em;
    transition: all 0.2s;
    border: none;
    font-family: inherit;
    font-weight: 500;
    color: black;
    background-color: white;
  }
  
  .much_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .much_btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  
  .much_btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
  }
  
  .much_btn::after {
    background-color: #fff;
  }
  
  .much_btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
  }


  #video-background-back{
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .appback_img{
    position: fixed;
    top: 0;
    left: 0;
    max-width: 100%;
    z-index: -1;
  }