diff --git a/MEHIAOUI/app.css b/MEHIAOUI/app.css
index 1a79f9c2c617f35663ccb26c34839097590f7b21..d336039a4aa42354d719559472c8952fd2ad224c 100644
--- a/MEHIAOUI/app.css
+++ b/MEHIAOUI/app.css
@@ -63,6 +63,20 @@ body{
             text-align: center;
             margin-bottom: 40px;
         }
+        .projetAndOriginal{
+            display: flex;
+            justify-content: space-around;
+            align-items: center;
+            gap: 20px;
+            width: 100%;
+            height: 100%;
+            .original{
+                width: 50%;
+                height: 500px;
+                border: 1px solid red;
+                background-image: url(img.jpg);
+            }
+        }
     }
 }
 
diff --git a/MEHIAOUI/index.html b/MEHIAOUI/index.html
index c5436336ef0d8e40bfd6a6924a8fb54771bf160b..2ffd8b94a7986e364bb41c61358b9d880b720f5c 100644
--- a/MEHIAOUI/index.html
+++ b/MEHIAOUI/index.html
@@ -35,7 +35,10 @@
             <!-- JQuery pour afficher les erreurs -->
             <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
             <!-- Mon script avec un chemin relatif -->
-            <div class="scene"><script type="module" src="projet.js"></script></div>
+            <div class="projetAndOriginal">
+                <div class="scene"><script type="module" src="projet.js"></script></div>
+                <div class="original"></div>
+            </div>
         </main>
     </body>
 </html>
\ No newline at end of file