diff --git a/game-template.css b/game-template.css
deleted file mode 100644
index d224431..0000000
--- a/game-template.css
+++ /dev/null
@@ -1,3 +0,0 @@
-h1 {
- color: red;
-}
diff --git a/game-template.html b/game-template.html
deleted file mode 100644
index 1991f9b..0000000
--- a/game-template.html
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- Caca Game
-
-
-
-
- Caca Game
-
-
diff --git a/game-template/game-template.css b/game-template/game-template.css
new file mode 100644
index 0000000..5686861
--- /dev/null
+++ b/game-template/game-template.css
@@ -0,0 +1,62 @@
+html {
+ background-color: grey;
+}
+
+.container {
+ background-color: red;
+ display: grid;
+ grid-template-columns: repeat(4, 1fr);
+ grid-auto-rows: minmax(100px, auto);
+ gap: 10px;
+ text-align: center;
+}
+
+.block {
+ border: solid 5px orange;
+ border-radius: 25px;
+}
+
+.one {
+ grid-column: 2 / 4;
+ grid-row: 1;
+}
+
+.two {
+ grid-column: 2 / 4;
+ grid-row: 2 / 5;
+}
+
+.three {
+ grid-column: 1;
+ grid-row: 2 / 5;
+}
+
+.four {
+ grid-column: 4;
+ grid-row: 2;
+}
+
+.five {
+ grid-column: 4;
+ grid-row: 3;
+}
+
+.six {
+ grid-column: 4;
+ grid-row: 4;
+}
+
+.seven {
+ grid-column: 2 / 4;
+ grid-row: 5 / 7;
+}
+
+.eight {
+ grid-column: 2;
+ grid-row: 7 / 8;
+}
+
+.nine {
+ grid-column: 3;
+ grid-row: 7 / 8;
+}
diff --git a/game-template/index.html b/game-template/index.html
new file mode 100644
index 0000000..087327e
--- /dev/null
+++ b/game-template/index.html
@@ -0,0 +1,22 @@
+
+
+
+
+ Game Template
+
+
+
+
+
+
+
+
+
+
+
+
desc / suite de la page
faire different block pour chaque partie
+
+
+
+
+
diff --git a/index.html b/index.html
index 123d437..9710385 100644
--- a/index.html
+++ b/index.html
@@ -62,7 +62,7 @@
-
+