body{
  margin: 0;
  background-color: black;
}

.container{
  width: 100%;
  position: relative;
}

#banner{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    
    background-size: cover; /* Hace que cubra toda la pantalla */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita repeticiones */
}

