Learn Basic CSS by Building a Cafe Menu - Step 76

Tell us what’s happening:

Sorry, your code does not pass. Try again.

Your bottom-line class should be applied to your second hr element.

Your code so far

<!-- file: index.html -->
<!-- User Editable Region -->

      <hr>
  <section>
    <h2>Coffee</h2>
    <article class="item">
      <p class="flavor">French Vanilla</p><p class="price">3.00</p>
    </article>
    <article class="item">
      <p class="flavor">Caramel Macchiato</p><p class="price">3.75</p>
    </article>
    <article class="item">
      <p class="flavor">Pumpkin Spice</p><p class="price">3.50</p>
    </article>
    <article class="item">
      <p class="flavor">Hazelnut</p><p class="price">4.00</p>
    </article>
    <article class="item">
      <p class="flavor">Mocha</p><p class="price">4.50</p>
    </article>
  </section>
  <section>
    <h2>Desserts</h2>
    <article class="item">
      <p class="dessert">Donut</p><p class="price">1.50</p>
    </article>
    <article class="item">
      <p class="dessert">Cherry Pie</p><p class="price">2.75</p>
    </article>
    <article class="item">
      <p class="dessert">Cheesecake</p><p class="price">3.00</p>
    </article>
    <article class="item">
      <p class="dessert">Cinnamon Roll</p><p class="price">2.50</p>
    </article>
  </section>
  <hr class="bottom-line"> <!-- Apply the bottom-line class here -->



<!-- User Editable Region -->
/* file: styles.css */

Your browser information:

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

Challenge Information:

Learn Basic CSS by Building a Cafe Menu - Step 76

You have made an unexpected change to the code. Click reset to restore the code and then add the class without deleting or moving any other lines of code.