* {
  box-sizing: border-box;
}

body {
    background-color: #B2E6FF;
}
#house {
  margin-top: max(5%, 7rem);
  margin-inline: auto;
  position: relative;
  width: 500px;
  height: 400px;
  background-color: hsl(11.811024, 100%, 75%);
  border: 4px solid #bd6109;
}

#house > div {
  position: absolute;
}

#chimney {
  top: -5rem;
  right: 2rem;
  background-color: white;
  width: 3rem;
  height: 5rem;
  border: 1px solid black;
  z-index: -1;
}

#roof {
  top: 0;
  width: 100%;
  height: 120px;
  border: 2px solid #ae5a0b;
  background-color: #ae5a0b;
}

#window-1,
#window-2 {
  background-color: #ffffb2;
  border: 2px solid #bd6109;
  width: 6rem;
  height: 5rem;
}

#window-1 {
  bottom: 6rem;
  left: 1rem;
}

#window-2 {
  bottom: 6rem;
  right: 1rem;
}

#door {
  bottom: 0;
  left: 190px;
  background-color: #e6e6e6;
  border: 2px solid #bd6109;
  width: 7rem;
  height: 9rem;
}

#door::after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  left: 6rem;
  bottom: 4rem;
  border-radius: 50%;
  background-color: #bd6109;
}
