Internet explorer tiene sus problemitas...
En tu CSS escribiste:
Código:
background: #120104 url('images/background.jpg')top center no-repeat;
Cambiá eso por:
Código:
background-color: #120104;
background-image: url("images/background.jpg");
background-repeat: no-repeat;
background-attachment: scroll;
background-position: center top;
Probá también cambiar las comillas dobles por simples o eliminarlas.
Suerte!