diff --git a/web/assets/css/index.css b/web/assets/css/index.css
index edc1741..c8aa241 100644
--- a/web/assets/css/index.css
+++ b/web/assets/css/index.css
@@ -339,4 +339,53 @@
margin: 20% auto;
width: 90%;
}
+ }
+
+ /* Supprimer tous les styles .learn-more et les remplacer par : */
+
+.button-container {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ padding: 1rem;
+ width: 100%;
+ }
+
+ .simple-btn {
+ width: 100%;
+ padding: 12px 0;
+ border: none;
+ border-radius: 6px;
+ background-color: #4CAF50;
+ color: white;
+ font-weight: bold;
+ cursor: pointer;
+ transition: background-color 0.3s;
+ text-align: center;
+ font-size: 1rem;
+ }
+
+ .simple-btn:hover {
+ background-color: #45a049;
+ }
+
+ .dark .simple-btn {
+ background-color: #282936;
+ }
+
+ .dark .simple-btn:hover {
+ background-color: #1e1e2a;
+ }
+
+ /* Adapter la colonne droite */
+ .right-column {
+ width: 20%;
+ padding: 1rem;
+ background-color: #f0f0f0;
+ display: flex;
+ justify-content: center;
+ }
+
+ .dark .right-column {
+ background-color: #2d2d2d;
}
\ No newline at end of file
diff --git a/web/templates/view/index.html b/web/templates/view/index.html
index bf8b3e2..6556e99 100644
--- a/web/templates/view/index.html
+++ b/web/templates/view/index.html
@@ -76,9 +76,17 @@
-
+
+
+