Build a City Skyline - Step 8nested city skyline div issue

hi, totally blind and using jaws for windows 2025 , windows 11 pro 2024. now doing the build a city skyline project. so please be gentle with me, and i cannot get the nested divs to pass. tried about 15 different times and did look at some one else code, to see what i am doing wrong. now it looks very similar. so as i cannot see, keep getting an error message. so will paste this, step 8 on the work shop. so can any one give me a hand and where i am going wrong and to then where to put the nexted divs. marvin.
ps: pasting the error message, my step and my html and css code.
You should create four new div elementshttps://www.freecodecamp.org/learn/full-stack-developer/workshop-city-skyline/step-8

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <title>City Skyline</title>
  <link rel="stylesheet" href="styles.css" />
</head>
<body>
  <main id="main-doc">
    <section class="background-buildings">
      <div class="bb1"></div>
      <div class="bb2"></div>
      <div class="bb3"></div>
      <div class="bb4"></div>
    </section>
  </main>
</body>
</html>
* {
    border: 1px solid black;
    box-sizing: border-box;
}

body {
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.background-buildings {
    width: 100%;
    height: 100%;
}

.bb1 {
    width: 10%;
    height: 70%;
}

Hey Marvin! For Step 8, double-check your bb1 element. It should open and then contain four empty elements inside it, all before it closes.
Think of it like a box with four smaller boxes inside. That’s what “nesting” means.
You’re really close — once those are in place, the error should go away. Keep going!

why did you add the .bb2, .bb3 and .bb4 elements? those will come in a future step

creating elements before the instructions ask you to create them can cause tests to fail

hi, got it to work. thanks for your help.
marvin.ps: too many divs and had the wrong way around. got it now passed.

Please don’t select your own posts as solutions. Select the post of someone else that lead to the solution