Build a House Painting - Build a House Painting

Tell us what’s happening:

Your #chimney should have a top value that puts it at the top of your #house.

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>House</title>
  <link rel="stylesheet" href="styles.css">
</head>
<body>

  <div id="house">
    <div id="chimney"></div>
    <div id="roof"></div>
    <div id="window-1"></div>
    <div id="window-2"></div>
    <div id="door"></div>
  </div>

</body>
</html>
/* file: styles.css */
/* HOUSE */
#house {
  position: relative;
  width: 500px;
  height: 400px;
  background-color: lightblue;
  border: 3px solid black;
}

/* CHIMNEY */
#chimney {
  position: absolute;
  top: 0px;
  left: 60px;
  width: 60px;
  height: 100px;
  background-color: gray;
  border: 2px solid black;
  z-index: -1;
}

/* ROOF */
#roof {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 500px;
  height: 100px;
  background-color: brown;
  border: 2px solid black;
}

/* WINDOW 1 */
#window-1 {
  position: absolute;
  top: 150px;
  left: 80px;
  width: 80px;
  height: 80px;
  background-color: white;
  border: 2px solid black;
}

/* WINDOW 2 */
#window-2 {
  position: absolute;
  top: 150px;
  right: 80px;
  width: 80px;
  height: 80px;
  background-color: white;
  border: 2px solid black;
}

/* DOOR */
#door {
  position: absolute;
  bottom: 0px;
  left: 200px;
  width: 100px;
  height: 150px;
  background-color: brown;
  border: 2px solid black;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36

Challenge Information:

Build a House Painting - Build a House Painting

is the chimney above the house?