.view{
    width:100%;
    height: 100vh;
    
  
  }

  body {
    background-image: url('../IMG/pa1.jpg');
    background-size: cover; /* Hace que la imagen cubra todo el body */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    background-position: center center; /* Centra la imagen en el body */
    margin: 0;
    padding: 0;
    height: 100vh; /* Asegura que el body tenga una altura de 100% de la ventana */
}