We need to add a flex module to the page.
A block with class container should become a flex container.
Elements must be distributed with the same distance between them.

This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task

index.html

<!DOCTYPE html>
<html>
  <head>
    <title>Flex container</title>
  </head>
  <body>
    <div class="container">
      <div class="item">Eat me</div>
      <div class="item">Drink me</div>
      <div class="item">Flex me</div>
    </div>
  </body>
</html>