/* Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .bg-img {
    height: 100vh;
    width: 100vw;
    /* Background wala part */
    background-image: url(mumbai.jpg);
    background-size: cover;
    background-position: center;
  }
  
  .overlay {
    height: 100%;
    width: 100%;
    background-color: #00000099;
  
    /* Center wala code */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .bg-img h1 {
    color: #ffffff;
    font-size: 50px;
    font-family: "Cinzel Decorative", serif;
  }
  