diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..179ef92
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+dist/
+package-lock.json
+node_modules/
\ No newline at end of file
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..d9775a7
--- /dev/null
+++ b/index.html
@@ -0,0 +1,46 @@
+
+
+
+
+ Hello, world!
+
+
+
+
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do.
+
+
+
+
+
+
+
+
+
+ Row 1, Column 1 |
+ Row 1, Column 2 |
+ Row 1, Column 3 |
+
+
+ Row 2, Column 1 |
+ Row 2, Column 2 |
+ Row 2, Column 3 |
+
+
+
+
+
\ No newline at end of file
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..3ae7f06
--- /dev/null
+++ b/package.json
@@ -0,0 +1,28 @@
+{
+ "name": "mouette.css",
+ "version": "0.0.1",
+ "description": "A minimal and simple css framework",
+ "main": "src/main.scss",
+ "scripts": {
+ "scss": "sass --watch src/main.scss dist/mouette.css",
+ "scss-no-source-map": "sass --watch --no-source-map src/main.scss dist/mouette.css",
+ "minify": "sass --watch src/main.scss --style compressed dist/mouette.min.css",
+ "minify-no-source-map": "sass --watch --no-source-map src/main.scss --style compressed dist/mouette.min.css",
+ "build": "sass src/main.scss dist/mouette.css && sass src/main.scss --style compressed dist/mouette.min.css",
+ "serve": "http-server ./ && minify"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://git.kobold.cafe/kazhnuz/mouette2.css"
+ },
+ "keywords": [
+ "css",
+ "scss"
+ ],
+ "author": "Kazhnuz",
+ "license": "GPL-3.0-or-later",
+ "dependencies": {
+ "http-server": "^14.1.1",
+ "sass": "^1.78.0"
+ }
+}
diff --git a/src/main.scss b/src/main.scss
new file mode 100644
index 0000000..de6ebed
--- /dev/null
+++ b/src/main.scss
@@ -0,0 +1,5 @@
+body {
+ margin: auto;
+ width: 800px;
+ font-size:16px;
+}
\ No newline at end of file