/* body{
    /* margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Mukta', sans-serif;
    background: #f5f5f5;
    background-color: orange;
    font-family: 'Mukta', sans-serif; 
    
}

    /* .logo-wrapper {
      position: relative;
      text-align: center;
    }

    .logo-wrapper img {
      width: 450px;
      opacity: 0.50; /* faded logo background 
    }

    .coming-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 36px;
      font-weight: 700;
      color: #d32f2f;
      letter-spacing: 1px;
    }

    .sub-text {
      margin-top: 10px;
      font-size: 18px;
      color: #444;
    } */ 
html, body {
margin: 0;
width: 100%;
height: 100%;
}

html body {
background: url('background.png') no-repeat center center;
background-size: cover;
}
/* 📱 Mobile view */
@media (max-width: 768px) {
body {
  background: url('mobile.png') no-repeat center center;
  background-size: cover;
}
}
/* @media screen and (max-width: 768px) {
  body {
    outline: 10px solid red !important;
  }
} */

