Comment mettre une image derrière le texte en CSS?

Je veux une image à afficher derrière du texte dans un <h1> tag. Mais quand j'ajoute l'image remplace le texte et pousse le texte en dessous.

Captures d'écran : Avant et Après

CSS

body {
  background-color: #1a1a1a;
}
header,
h1 {
  text-align: center;
  font-family: CGF Locust Resistance;
  font-size: 50px;
  color: lightgray;
  -webkit-text-stroke: 1.5px #000;
}
header {
  margin: 0;
  padding: 0;
  height: 100px;
  border-bottom: .5px solid #b3b3b3;
}
nav {
  position: relative;
  top: -5px;
  margin: auto;
  padding: 0;
  list-style: none;
  width: 100%;
  text-align: center;
  border-bottom: .5px solid #b3b3b3;
}
nav ul li {
  display: inline;
  color: #fff;
  font-family: CGF Locust Resistance;
  font-size: 12.5px;
  padding: 20px;
}
.red {
  color: red;
}
#omen {
  z-index: -1;
}
  • Pourriez-vous nous fournir le code html ainsi?
InformationsquelleAutor Cian OT | 2016-05-24