body {
  background-image: url(images/fond.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  font-family: 'Courier New', Courier, monospace;
}
h1 {
  text-align: center;
}
#container {
  width: 350px;
  margin: auto;
  height: 450px;
  background-color: #211b224a; /* A commenter plus tard */
  position: relative;
}
#corps {
  position: relative;
  z-index: 2; /*  Le z-index: 1 est celui notre container */
  height: 67%;
  width: 50%;
  top: 16%;
  left: 25%;
  background-color: rgb(224,141,77);
  border-radius: 42% ; 
} 
.elements {
  z-index: 3;
  position: absolute;
}

/* Ajoutez le css des images ici */
#nose {
  top: 80px;
  left: 20px;
}

#eyes {
  top: 50px;
  left: 30px;
}

#right_ear {
  top: 55px;
  left: -40px;
}

#left_ear {
  top: 55px;
  left: 155px;
}

#hat {
  top: -40px;
  left: -3px;
}

#brows {
  top: 25px;
  left: 25px;
}

#righthand {
  top: 130px;
  left: -55px;
}

#lefthand {
  top: -30px;
  left: 120px;
}

#feet {
  top: 260px;
  left: -25px;
}



