#house {
  position: relative;
  width: 500px;
  height: 400px;
  background-color: DarkSeaGreen;
  border: 4px solid DarkSlateGray;
  top: 150px;
}

#chimney {
  position: absolute;
  width: 100px;
  height: 130px;
  background-color: DarkSalmon;
  border: 5px solid IndianRed;
  top: -130px;
  right: 30px;
  z-index: -1;
}

hr {
  color: IndianRed;
}

#roof {
  position: absolute;
  width: 525px;
  height: 75px;
  background-color: Tomato;
  border: 4px solid maroon;
  top: 0;
  left: -15px;
}

#window-1 {
  position: absolute;
  width: 150px;
  height: 120px;
  background-color: powderBlue;
  border: 4px solid SteelBlue;
  top: 120px;
  left: 25px;
}

#window-2 {
  position: absolute;
  width: 100px;
  height: 160px;
  background-color: powderBlue;
  border: 4px solid SteelBlue;
  top: 100px;
  left: 350px;
}

#door {
  position: absolute;
  width: 100px;
  height: 150px;
  background-color: Wheat;
  border: 4px solid tan;
  bottom: 0;
  right: 190px;
}
