body {
  overflow: hidden;
}

.homeMain {
  position: relative;
}

.homeImg {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/restaturant.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  margin: 0;
  opacity: 1;
  z-index: -999999999;
}

.welcome {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  z-index: 99999999;
  height: 100vh;
}

.welcome h1 {
  font-size: 4.4rem;
}

.welcome p{
    font-size: 1.5rem;
}

@media (max-width: 768px) {
  .welcome h1 {
    font-size: 2.5rem;
  }

  .welcome p {
    font-size: 1.2rem;
  }
}