/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
}

/* Background Image */
.coming-soon {
  background-image: url('desktop.png'); /* Imagen para desktop */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100vw;
}

/* Mobile Version */
@media (max-width: 768px) {
  .coming-soon {
    background-image: url('mobile.png'); /* Reemplaza por tu imagen mobile */
  }
}