/* House */

#house {
  position: relative;
  width: 500px;
  height: 400px;
  background-color: brown;
  border: 1px solid black;
  margin: 50px;
}

/* Chimney */

#chimney {
  position: absolute;
  top: -10px;
  left: 250px;
  width: 100px;
  height: 10px;
  border: 1px solid black;
  background-color: chocolate;
  z-index: -1;
}

/* Roof */

#roof {
  position: absolute;
  top: 0;
  width: 500px;
  height: 100px;  background-color: red;
  border: 1px solid yellow;
}

/* First Window */
#window-1 {
  position: absolute;
  top: 150px;
  left: 50px;
  width: 60px;
  height: 60px;
  border: 1px solid blue;
  background-color: lightgray;
}

/* Second Window */
#window-2 {
  position: absolute;
  top: 150px;
  left: 350px;
  width: 60px;
  height: 60px;
  border: 1px solid blue;
  background-color: lightgray;
}

/* Door */
#door {
  position: absolute;
  top: 280px;
  left: 200px;
  width: 100px;
  height: 100px;
  border: 10px solid green;
  background-color: white;
}
