diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..ccf1a3f
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+.vscode
+node_modules
+test
diff --git a/LICENSE.md b/LICENSE.md
new file mode 100644
index 0000000..b677651
--- /dev/null
+++ b/LICENSE.md
@@ -0,0 +1,21 @@
+# The MIT License (MIT)
+
+Copyright (c) 2021 de Oostfreese
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..a550bbb
--- /dev/null
+++ b/README.md
@@ -0,0 +1,464 @@
+# Gibki
+
+Gibki is an open-source and straightforward grid system based on Flexbox.
+
+## Table of contents
+
+- [Installation](#installation)
+  - [Download](#download)
+  - [Package managers](#package-managers)
+- [Usage](#usage)
+  - [General](#general)
+  - [Nesting](#nesting)
+  - [Responsive layouts](#responsive-layouts)
+  - [Wrapping](#wrapping)
+  - [Gutters](#gutters)
+  - [Directions](#directions)
+  - [Horizontal alignment](#horizontal-alignment)
+  - [Vertical alignment](#vertical-alignment)
+  - [Reordering](#reordering)
+
+## Installation
+
+### Download
+
+CSS: `css/flex.min.css` minified, or `css/flex.css` un-minified
+
+### Package managers
+
+Gibki is also available on npm.
+
+```shell
+npm install gibki --save
+```
+
+## Usage
+
+### General
+
+#### .flex
+
+`.flex` is the wrapper for columns.
+
+```html
+<div class="container">
+  <div class="flex">
+
+  </div>
+</div>
+```
+
+#### .flex__
+
+`.flex__` classes creates differend column sizes.
+
+```html
+<div class="container">
+  <div class="flex">
+    <div class="flex__2"></div>
+    <div class="flex__10"></div>
+    <div class="flex__8"></div>
+    <div class="flex__4"></div>
+    <div class="flex__7"></div>
+    <div class="flex__5"></div>
+  </div>
+</div>
+```
+
+#### .flex__auto
+
+`.flex__auto` creates columns that will take up however much space is left.
+
+```html
+<div class="container">
+  <div class="flex">
+    <div class="flex__6"></div>
+    <div class="flex__auto"></div>
+    <div class="flex__auto"></div>
+    <div class="flex__8"></div>
+    <div class="flex__auto"></div>
+  </div>
+</div>
+```
+
+### Nesting
+
+To nest your content with the default grid, add a new `.flex` container and set of `.flex__` columns within an existing `.flex__` column.
+
+```html
+<div class="container">
+  <div class="flex">
+    <div class="flex__lg-4"></div>
+    <div class="flex__lg-8">
+      <div class="flex">
+        <div class="flex__4"></div>
+        <div class="flex__4"></div>
+        <div class="flex__4"></div>
+      </div>
+    </div>
+  </div>
+</div>
+```
+
+### Responsive layouts
+
+The grid system lets you create responsive layouts by giving you the option to define different column widths for each viewport. Four different breakpoints determine the viewports.
+
+- &#x3E;= 500px: Small `sm`
+- &#x3E;= 700px: Medium `md`
+- &#x3E;= 1000px: Large `lg`
+- &#x3E;= 1200px: Extra large `xl`
+
+```html
+<div class="container">
+  <div class="flex">
+    <div class="flex__md-6 flex__lg-3"></div>
+    <div class="flex__md-6 flex__lg-3"></div>
+    <div class="flex__md-6 flex__lg-3"></div>
+    <div class="flex__md-6 flex__lg-3"></div>
+  </div>
+</div>
+```
+
+### Wrapping
+
+By default, columns will wrap if necessary.
+
+```html
+<div class="container">
+  <div class="flex">
+    <div class="flex__6"></div>
+    <div class="flex__8"></div>
+  </div>
+</div>
+```
+
+#### .flex--wrap-reverse
+
+The columns will wrap if necessary but in reverse order.
+
+```html
+<div class="container">
+  <div class="flex flex--wrap-reverse">
+    <div class="flex__6"></div>
+    <div class="flex__8"></div>
+  </div>
+</div>
+```
+
+#### .flex--nowrap
+
+The columns will not wrap.
+
+```html
+<div class="container">
+  <div class="flex flex--nowrap">
+    <div class="flex__6"></div>
+    <div class="flex__8"></div>
+  </div>
+</div>
+```
+
+### Gutters
+
+The columns have horizontal and vertical padding to create the gutters between individual columns and rows. You can remove the margin from the wrapper and the padding from the columns and rows with `.flex--no-gutters`.
+
+```html
+<div class="container">
+  <div class="flex flex--no-gutters">
+    <div class="flex__md-6"></div>
+    <div class="flex__md-6"></div>
+    <div class="flex__md-6"></div>
+    <div class="flex__md-6"></div>
+  </div>
+</div>
+```
+
+You can also only remove the horizontal gutters with `.flex--no-horizontal-gutters`.
+
+```html
+<div class="container">
+  <div class="flex flex--no-horizontal-gutters">
+    <div class="flex__md-6"></div>
+    <div class="flex__md-6"></div>
+    <div class="flex__md-6"></div>
+    <div class="flex__md-6"></div>
+  </div>
+</div>
+```
+
+Or only remove the vertical gutters with `.flex--no-vertical-gutters`.
+
+```html
+<div class="container">
+  <div class="flex flex--no-vertical-gutters">
+    <div class="flex__md-6"></div>
+    <div class="flex__md-6"></div>
+    <div class="flex__md-6"></div>
+    <div class="flex__md-6"></div>
+  </div>
+</div>
+```
+
+### Directions
+
+The following classes define the direction in which the columns are placed in the wrapper. By default, columns are set left to right in `ltr` and right to left in `rtl`.
+
+```html
+<div class="container">
+  <div class="flex">
+    <div class="flex__4"></div>
+    <div class="flex__8"></div>
+  </div>
+</div>
+```
+
+#### .flex--row-reverse
+
+`row-reverse` sets the direction, right to left in `ltr` and left to right in `rtl`.
+
+```html
+<div class="container">
+  <div class="flex flex--row-reverse">
+    <div class="flex__4"></div>
+    <div class="flex__8"></div>
+  </div>
+</div>
+```
+
+#### .flex--column
+
+`.flex--column` behaves the same way as `.flex--row` but top to bottom.
+
+```html
+<div class="container">
+  <div class="flex flex--column">
+    <div class="flex__4"></div>
+    <div class="flex__8"></div>
+  </div>
+</div>
+```
+
+#### .flex--column-reverse
+
+`.flex--column-reverse` behaves the same way as `.flex--row-reverse` but bottom to top.
+
+```html
+<div class="container">
+  <div class="flex flex--column-reverse">
+    <div class="flex__4"></div>
+    <div class="flex__8"></div>
+  </div>
+</div>
+```
+
+### Horizontal alignment
+
+The following classes define how columns are aligned along the main axis. It helps distribute extra space between the items when they don't reach their maximum size. By default, columns are positioned at the beginning of the container.
+
+```html
+<div class="container">
+  <div class="flex">
+    <div class="flex__3"></div>
+    <div class="flex__3"></div>
+    <div class="flex__3"></div>
+  </div>
+</div>
+```
+
+#### .flex--right
+
+The columns are positioned at the end of the container.
+
+```html
+<div class="container">
+  <div class="flex flex--right">
+    <div class="flex__3"></div>
+    <div class="flex__3"></div>
+    <div class="flex__3"></div>
+  </div>
+</div>
+```
+
+#### .flex--center
+
+The columns are positioned at the center of the container.
+
+```html
+<div class="container">
+  <div class="flex flex--center">
+    <div class="flex__3"></div>
+    <div class="flex__3"></div>
+    <div class="flex__3"></div>
+  </div>
+</div>
+```
+
+#### .flex--space-between
+
+The columns are evenly spread horizontally; the first column is at the beginning of the container, the last column on the end of the container. Thus, space gets distributed between the columns.
+
+```html
+<div class="container">
+  <div class="flex flex--space-between">
+    <div class="flex__3"></div>
+    <div class="flex__3"></div>
+    <div class="flex__3"></div>
+  </div>
+</div>
+```
+
+#### .flex--space-around
+
+The columns are positioned with equal space before, between, and after them.
+
+```html
+<div class="container">
+  <div class="flex flex--space-around">
+    <div class="flex__3"></div>
+    <div class="flex__3"></div>
+    <div class="flex__3"></div>
+  </div>
+</div>
+```
+
+### Vertical alignment
+
+The following classes define how columns are aligned along the cross axis when they don't reach their maximum size.
+
+#### .flex--stretch
+
+This is the default value. You don't need to add the class to the wrapper; it stretches the height of the columns to fill the container but still respects `min-width` and `max-width`.
+
+```html
+<div class="container">
+  <div class="flex">
+    <div class="flex__4"></div>
+    <div class="flex__4"></div>
+    <div class="flex__4"></div>
+  </div>
+</div>
+```
+
+You can apply `.flex--stretch` to individual columns if necessary.
+
+```html
+<div class="container">
+  <div class="flex flex--top">
+    <div class="flex__4 flex--stretch"></div>
+    <div class="flex__4"></div>
+    <div class="flex__4"></div>
+  </div>
+</div>
+```
+
+#### .flex--top
+
+The columns are positioned at the top of the container.
+
+```html
+<div class="container">
+  <div class="flex flex--top">
+    <div class="flex__4"></div>
+    <div class="flex__4"></div>
+    <div class="flex__4"></div>
+  </div>
+</div>
+```
+
+You can also apply `.flex--top` to individual columns.
+
+```html
+<div class="container">
+  <div class="flex">
+    <div class="flex__4 flex--top"></div>
+    <div class="flex__4"></div>
+    <div class="flex__4"></div>
+  </div>
+</div>
+```
+
+#### .flex--bottom
+
+The columns are positioned at the bottom of the container.
+
+```html
+<div class="container">
+  <div class="flex flex--bottom">
+    <div class="flex__4"></div>
+    <div class="flex__4"></div>
+    <div class="flex__4"></div>
+  </div>
+</div>
+```
+
+You can also apply `.flex--bottom` to individual columns.
+
+```html
+<div class="container">
+  <div class="flex">
+    <div class="flex__4 flex--bottom"></div>
+    <div class="flex__4"></div>
+    <div class="flex__4"></div>
+  </div>
+</div>
+```
+
+#### .flex--middle
+
+The columns are positioned at the vertical center of the container.
+
+```html
+<div class="container">
+  <div class="flex flex--middle">
+    <div class="flex__4"></div>
+    <div class="flex__4"></div>
+    <div class="flex__4"></div>
+  </div>
+</div>
+```
+
+You can also apply `.flex--middle` to individual columns.
+
+```html
+<div class="container">
+  <div class="flex">
+    <div class="flex__4 flex--middle"></div>
+    <div class="flex__4"></div>
+    <div class="flex__4"></div>
+  </div>
+</div>
+```
+
+### Reordering
+
+Use `.flex--order-` classes for controlling the visual order of your content.
+
+```html
+<div class="container">
+  <div class="flex">
+    <div class="flex__6 flex--order-5"></div>
+    <div class="flex__6 flex--order-6 flex--order-lg-3"></div>
+    <div class="flex__6 flex--order-2"></div>
+    <div class="flex__6 flex--order-3 flex--order-lg-6"></div>
+    <div class="flex__6 flex--order-4"></div>
+    <div class="flex__6 flex--order-1"></div>
+  </div>
+</div>
+```
+
+#### Offsetting columns
+
+Offset a column by adding `.flex--offset-` classes.
+
+```html
+<div class="container">
+  <div class="flex">
+    <div class="flex__2"></div>
+    <div class="flex__8 flex--offset-2"></div>
+    <div class="flex__md-8 flex--offset-md-4"></div>
+    <div class="flex__6 flex__lg-4"></div>
+    <div class="flex__6 flex--offset-lg-2"></div>
+  </div>
+</div>
+```
diff --git a/css/gibki.css b/css/gibki.css
new file mode 100644
index 0000000..5ce01a4
--- /dev/null
+++ b/css/gibki.css
@@ -0,0 +1,785 @@
+/**
+ * Gibki
+ *
+ * @author Benjamin de Oostfrees
+ * @version 1.0.3
+ * @url https://github.com/deoostfrees/Gibki
+ *
+ * MIT License
+ */
+.container {
+  -webkit-margin-start: auto;
+          margin-inline-start: auto;
+  -webkit-margin-end: auto;
+          margin-inline-end: auto;
+  max-width: 66.667rem;
+  -webkit-padding-start: 1rem;
+          padding-inline-start: 1rem;
+  -webkit-padding-end: 1rem;
+          padding-inline-end: 1rem;
+  width: 100%;
+}
+
+.container .container {
+  -webkit-padding-start: 0;
+          padding-inline-start: 0;
+  -webkit-padding-end: 0;
+          padding-inline-end: 0;
+}
+
+.flex {
+  align-items: stretch;
+  display: flex;
+  flex-direction: row;
+  flex-wrap: wrap;
+  justify-content: flex-start;
+}
+
+.flex:not(.flex--no-gutters):not(.flex--no-horizontal-gutters) {
+  -webkit-margin-start: -1rem;
+          margin-inline-start: -1rem;
+  -webkit-margin-end: -1rem;
+          margin-inline-end: -1rem;
+}
+
+.flex:not(.flex--no-gutters):not(.flex--no-horizontal-gutters) > [class*='flex__'] {
+  -webkit-padding-start: 1rem;
+          padding-inline-start: 1rem;
+  -webkit-padding-end: 1rem;
+          padding-inline-end: 1rem;
+}
+
+.flex:not(.flex--no-gutters):not(.flex--no-vertical-gutters) {
+  row-gap: 2rem;
+}
+
+.flex--row-reverse {
+  flex-direction: row-reverse;
+}
+
+.flex--column {
+  flex-direction: column;
+}
+
+.flex--column-reverse {
+  flex-direction: column-reverse;
+}
+
+.flex--wrap-reverse {
+  flex-wrap: wrap-reverse;
+}
+
+.flex--nowrap {
+  flex-wrap: nowrap;
+}
+
+.flex--center {
+  justify-content: center;
+}
+
+.flex--right {
+  justify-content: flex-end;
+}
+
+.flex--space-between {
+  justify-content: space-between;
+}
+
+.flex--space-around {
+  justify-content: space-around;
+}
+
+.flex > .flex--stretch {
+  -ms-grid-row-align: stretch;
+      align-self: stretch;
+}
+
+.flex--top {
+  align-items: flex-start;
+}
+
+.flex > .flex--top {
+  align-self: flex-start;
+}
+
+.flex--bottom {
+  align-items: flex-end;
+}
+
+.flex > .flex--bottom {
+  align-self: flex-end;
+}
+
+.flex--middle {
+  align-items: center;
+}
+
+.flex > .flex--middle {
+  -ms-grid-row-align: center;
+      align-self: center;
+}
+
+.flex--baseline {
+  align-items: baseline;
+}
+
+.flex > .flex--baseline {
+  align-self: baseline;
+}
+
+[class*='flex__'] {
+  box-sizing: border-box;
+  width: 100%;
+}
+
+.flex__auto {
+  flex: 1;
+}
+
+.flex__1 {
+  width: 8.33333%;
+}
+
+.flex__2 {
+  width: 16.66667%;
+}
+
+.flex__3 {
+  width: 25%;
+}
+
+.flex__4 {
+  width: 33.33333%;
+}
+
+.flex__5 {
+  width: 41.66667%;
+}
+
+.flex__6 {
+  width: 50%;
+}
+
+.flex__7 {
+  width: 58.33333%;
+}
+
+.flex__8 {
+  width: 66.66667%;
+}
+
+.flex__9 {
+  width: 75%;
+}
+
+.flex__10 {
+  width: 83.33333%;
+}
+
+.flex__11 {
+  width: 91.66667%;
+}
+
+.flex__12 {
+  width: 100%;
+}
+
+.flex--order-1 {
+  order: 1;
+}
+
+.flex--order-2 {
+  order: 2;
+}
+
+.flex--order-3 {
+  order: 3;
+}
+
+.flex--order-4 {
+  order: 4;
+}
+
+.flex--order-5 {
+  order: 5;
+}
+
+.flex--order-6 {
+  order: 6;
+}
+
+.flex--order-7 {
+  order: 7;
+}
+
+.flex--order-8 {
+  order: 8;
+}
+
+.flex--order-9 {
+  order: 9;
+}
+
+.flex--order-10 {
+  order: 10;
+}
+
+.flex--order-11 {
+  order: 11;
+}
+
+.flex--order-12 {
+  order: 12;
+}
+
+.flex--offset-1 {
+  -webkit-margin-start: 8.33333%;
+          margin-inline-start: 8.33333%;
+}
+
+.flex--offset-2 {
+  -webkit-margin-start: 16.66667%;
+          margin-inline-start: 16.66667%;
+}
+
+.flex--offset-3 {
+  -webkit-margin-start: 25%;
+          margin-inline-start: 25%;
+}
+
+.flex--offset-4 {
+  -webkit-margin-start: 33.33333%;
+          margin-inline-start: 33.33333%;
+}
+
+.flex--offset-5 {
+  -webkit-margin-start: 41.66667%;
+          margin-inline-start: 41.66667%;
+}
+
+.flex--offset-6 {
+  -webkit-margin-start: 50%;
+          margin-inline-start: 50%;
+}
+
+.flex--offset-7 {
+  -webkit-margin-start: 58.33333%;
+          margin-inline-start: 58.33333%;
+}
+
+.flex--offset-8 {
+  -webkit-margin-start: 66.66667%;
+          margin-inline-start: 66.66667%;
+}
+
+.flex--offset-9 {
+  -webkit-margin-start: 75%;
+          margin-inline-start: 75%;
+}
+
+.flex--offset-10 {
+  -webkit-margin-start: 83.33333%;
+          margin-inline-start: 83.33333%;
+}
+
+.flex--offset-11 {
+  -webkit-margin-start: 91.66667%;
+          margin-inline-start: 91.66667%;
+}
+
+.flex--offset-12 {
+  -webkit-margin-start: 100%;
+          margin-inline-start: 100%;
+}
+
+@media screen and (min-width: 31.25em) {
+  .flex__sm-1 {
+    width: 8.33333%;
+  }
+  .flex__sm-2 {
+    width: 16.66667%;
+  }
+  .flex__sm-3 {
+    width: 25%;
+  }
+  .flex__sm-4 {
+    width: 33.33333%;
+  }
+  .flex__sm-5 {
+    width: 41.66667%;
+  }
+  .flex__sm-6 {
+    width: 50%;
+  }
+  .flex__sm-7 {
+    width: 58.33333%;
+  }
+  .flex__sm-8 {
+    width: 66.66667%;
+  }
+  .flex__sm-9 {
+    width: 75%;
+  }
+  .flex__sm-10 {
+    width: 83.33333%;
+  }
+  .flex__sm-11 {
+    width: 91.66667%;
+  }
+  .flex__sm-12 {
+    width: 100%;
+  }
+  .flex--offset-sm-1 {
+    -webkit-margin-start: 8.33333%;
+            margin-inline-start: 8.33333%;
+  }
+  .flex--offset-sm-2 {
+    -webkit-margin-start: 16.66667%;
+            margin-inline-start: 16.66667%;
+  }
+  .flex--offset-sm-3 {
+    -webkit-margin-start: 25%;
+            margin-inline-start: 25%;
+  }
+  .flex--offset-sm-4 {
+    -webkit-margin-start: 33.33333%;
+            margin-inline-start: 33.33333%;
+  }
+  .flex--offset-sm-5 {
+    -webkit-margin-start: 41.66667%;
+            margin-inline-start: 41.66667%;
+  }
+  .flex--offset-sm-6 {
+    -webkit-margin-start: 50%;
+            margin-inline-start: 50%;
+  }
+  .flex--offset-sm-7 {
+    -webkit-margin-start: 58.33333%;
+            margin-inline-start: 58.33333%;
+  }
+  .flex--offset-sm-8 {
+    -webkit-margin-start: 66.66667%;
+            margin-inline-start: 66.66667%;
+  }
+  .flex--offset-sm-9 {
+    -webkit-margin-start: 75%;
+            margin-inline-start: 75%;
+  }
+  .flex--offset-sm-10 {
+    -webkit-margin-start: 83.33333%;
+            margin-inline-start: 83.33333%;
+  }
+  .flex--offset-sm-11 {
+    -webkit-margin-start: 91.66667%;
+            margin-inline-start: 91.66667%;
+  }
+  .flex--offset-sm-12 {
+    -webkit-margin-start: 100%;
+            margin-inline-start: 100%;
+  }
+  .flex--order-sm-1 {
+    order: 1;
+  }
+  .flex--order-sm-2 {
+    order: 2;
+  }
+  .flex--order-sm-3 {
+    order: 3;
+  }
+  .flex--order-sm-4 {
+    order: 4;
+  }
+  .flex--order-sm-5 {
+    order: 5;
+  }
+  .flex--order-sm-6 {
+    order: 6;
+  }
+  .flex--order-sm-7 {
+    order: 7;
+  }
+  .flex--order-sm-8 {
+    order: 8;
+  }
+  .flex--order-sm-9 {
+    order: 9;
+  }
+  .flex--order-sm-10 {
+    order: 10;
+  }
+  .flex--order-sm-11 {
+    order: 11;
+  }
+  .flex--order-sm-12 {
+    order: 12;
+  }
+}
+
+@media screen and (min-width: 43.75em) {
+  .flex__md-1 {
+    width: 8.33333%;
+  }
+  .flex__md-2 {
+    width: 16.66667%;
+  }
+  .flex__md-3 {
+    width: 25%;
+  }
+  .flex__md-4 {
+    width: 33.33333%;
+  }
+  .flex__md-5 {
+    width: 41.66667%;
+  }
+  .flex__md-6 {
+    width: 50%;
+  }
+  .flex__md-7 {
+    width: 58.33333%;
+  }
+  .flex__md-8 {
+    width: 66.66667%;
+  }
+  .flex__md-9 {
+    width: 75%;
+  }
+  .flex__md-10 {
+    width: 83.33333%;
+  }
+  .flex__md-11 {
+    width: 91.66667%;
+  }
+  .flex__md-12 {
+    width: 100%;
+  }
+  .flex--offset-md-1 {
+    -webkit-margin-start: 8.33333%;
+            margin-inline-start: 8.33333%;
+  }
+  .flex--offset-md-2 {
+    -webkit-margin-start: 16.66667%;
+            margin-inline-start: 16.66667%;
+  }
+  .flex--offset-md-3 {
+    -webkit-margin-start: 25%;
+            margin-inline-start: 25%;
+  }
+  .flex--offset-md-4 {
+    -webkit-margin-start: 33.33333%;
+            margin-inline-start: 33.33333%;
+  }
+  .flex--offset-md-5 {
+    -webkit-margin-start: 41.66667%;
+            margin-inline-start: 41.66667%;
+  }
+  .flex--offset-md-6 {
+    -webkit-margin-start: 50%;
+            margin-inline-start: 50%;
+  }
+  .flex--offset-md-7 {
+    -webkit-margin-start: 58.33333%;
+            margin-inline-start: 58.33333%;
+  }
+  .flex--offset-md-8 {
+    -webkit-margin-start: 66.66667%;
+            margin-inline-start: 66.66667%;
+  }
+  .flex--offset-md-9 {
+    -webkit-margin-start: 75%;
+            margin-inline-start: 75%;
+  }
+  .flex--offset-md-10 {
+    -webkit-margin-start: 83.33333%;
+            margin-inline-start: 83.33333%;
+  }
+  .flex--offset-md-11 {
+    -webkit-margin-start: 91.66667%;
+            margin-inline-start: 91.66667%;
+  }
+  .flex--offset-md-12 {
+    -webkit-margin-start: 100%;
+            margin-inline-start: 100%;
+  }
+  .flex--order-md-1 {
+    order: 1;
+  }
+  .flex--order-md-2 {
+    order: 2;
+  }
+  .flex--order-md-3 {
+    order: 3;
+  }
+  .flex--order-md-4 {
+    order: 4;
+  }
+  .flex--order-md-5 {
+    order: 5;
+  }
+  .flex--order-md-6 {
+    order: 6;
+  }
+  .flex--order-md-7 {
+    order: 7;
+  }
+  .flex--order-md-8 {
+    order: 8;
+  }
+  .flex--order-md-9 {
+    order: 9;
+  }
+  .flex--order-md-10 {
+    order: 10;
+  }
+  .flex--order-md-11 {
+    order: 11;
+  }
+  .flex--order-md-12 {
+    order: 12;
+  }
+}
+
+@media screen and (min-width: 62.5em) {
+  .flex__lg-1 {
+    width: 8.33333%;
+  }
+  .flex__lg-2 {
+    width: 16.66667%;
+  }
+  .flex__lg-3 {
+    width: 25%;
+  }
+  .flex__lg-4 {
+    width: 33.33333%;
+  }
+  .flex__lg-5 {
+    width: 41.66667%;
+  }
+  .flex__lg-6 {
+    width: 50%;
+  }
+  .flex__lg-7 {
+    width: 58.33333%;
+  }
+  .flex__lg-8 {
+    width: 66.66667%;
+  }
+  .flex__lg-9 {
+    width: 75%;
+  }
+  .flex__lg-10 {
+    width: 83.33333%;
+  }
+  .flex__lg-11 {
+    width: 91.66667%;
+  }
+  .flex__lg-12 {
+    width: 100%;
+  }
+  .flex--offset-lg-1 {
+    -webkit-margin-start: 8.33333%;
+            margin-inline-start: 8.33333%;
+  }
+  .flex--offset-lg-2 {
+    -webkit-margin-start: 16.66667%;
+            margin-inline-start: 16.66667%;
+  }
+  .flex--offset-lg-3 {
+    -webkit-margin-start: 25%;
+            margin-inline-start: 25%;
+  }
+  .flex--offset-lg-4 {
+    -webkit-margin-start: 33.33333%;
+            margin-inline-start: 33.33333%;
+  }
+  .flex--offset-lg-5 {
+    -webkit-margin-start: 41.66667%;
+            margin-inline-start: 41.66667%;
+  }
+  .flex--offset-lg-6 {
+    -webkit-margin-start: 50%;
+            margin-inline-start: 50%;
+  }
+  .flex--offset-lg-7 {
+    -webkit-margin-start: 58.33333%;
+            margin-inline-start: 58.33333%;
+  }
+  .flex--offset-lg-8 {
+    -webkit-margin-start: 66.66667%;
+            margin-inline-start: 66.66667%;
+  }
+  .flex--offset-lg-9 {
+    -webkit-margin-start: 75%;
+            margin-inline-start: 75%;
+  }
+  .flex--offset-lg-10 {
+    -webkit-margin-start: 83.33333%;
+            margin-inline-start: 83.33333%;
+  }
+  .flex--offset-lg-11 {
+    -webkit-margin-start: 91.66667%;
+            margin-inline-start: 91.66667%;
+  }
+  .flex--offset-lg-12 {
+    -webkit-margin-start: 100%;
+            margin-inline-start: 100%;
+  }
+  .flex--order-lg-1 {
+    order: 1;
+  }
+  .flex--order-lg-2 {
+    order: 2;
+  }
+  .flex--order-lg-3 {
+    order: 3;
+  }
+  .flex--order-lg-4 {
+    order: 4;
+  }
+  .flex--order-lg-5 {
+    order: 5;
+  }
+  .flex--order-lg-6 {
+    order: 6;
+  }
+  .flex--order-lg-7 {
+    order: 7;
+  }
+  .flex--order-lg-8 {
+    order: 8;
+  }
+  .flex--order-lg-9 {
+    order: 9;
+  }
+  .flex--order-lg-10 {
+    order: 10;
+  }
+  .flex--order-lg-11 {
+    order: 11;
+  }
+  .flex--order-lg-12 {
+    order: 12;
+  }
+}
+
+@media screen and (min-width: 75em) {
+  .flex__xl-1 {
+    width: 8.33333%;
+  }
+  .flex__xl-2 {
+    width: 16.66667%;
+  }
+  .flex__xl-3 {
+    width: 25%;
+  }
+  .flex__xl-4 {
+    width: 33.33333%;
+  }
+  .flex__xl-5 {
+    width: 41.66667%;
+  }
+  .flex__xl-6 {
+    width: 50%;
+  }
+  .flex__xl-7 {
+    width: 58.33333%;
+  }
+  .flex__xl-8 {
+    width: 66.66667%;
+  }
+  .flex__xl-9 {
+    width: 75%;
+  }
+  .flex__xl-10 {
+    width: 83.33333%;
+  }
+  .flex__xl-11 {
+    width: 91.66667%;
+  }
+  .flex__xl-12 {
+    width: 100%;
+  }
+  .flex--offset-xl-1 {
+    -webkit-margin-start: 8.33333%;
+            margin-inline-start: 8.33333%;
+  }
+  .flex--offset-xl-2 {
+    -webkit-margin-start: 16.66667%;
+            margin-inline-start: 16.66667%;
+  }
+  .flex--offset-xl-3 {
+    -webkit-margin-start: 25%;
+            margin-inline-start: 25%;
+  }
+  .flex--offset-xl-4 {
+    -webkit-margin-start: 33.33333%;
+            margin-inline-start: 33.33333%;
+  }
+  .flex--offset-xl-5 {
+    -webkit-margin-start: 41.66667%;
+            margin-inline-start: 41.66667%;
+  }
+  .flex--offset-xl-6 {
+    -webkit-margin-start: 50%;
+            margin-inline-start: 50%;
+  }
+  .flex--offset-xl-7 {
+    -webkit-margin-start: 58.33333%;
+            margin-inline-start: 58.33333%;
+  }
+  .flex--offset-xl-8 {
+    -webkit-margin-start: 66.66667%;
+            margin-inline-start: 66.66667%;
+  }
+  .flex--offset-xl-9 {
+    -webkit-margin-start: 75%;
+            margin-inline-start: 75%;
+  }
+  .flex--offset-xl-10 {
+    -webkit-margin-start: 83.33333%;
+            margin-inline-start: 83.33333%;
+  }
+  .flex--offset-xl-11 {
+    -webkit-margin-start: 91.66667%;
+            margin-inline-start: 91.66667%;
+  }
+  .flex--offset-xl-12 {
+    -webkit-margin-start: 100%;
+            margin-inline-start: 100%;
+  }
+  .flex--order-xl-1 {
+    order: 1;
+  }
+  .flex--order-xl-2 {
+    order: 2;
+  }
+  .flex--order-xl-3 {
+    order: 3;
+  }
+  .flex--order-xl-4 {
+    order: 4;
+  }
+  .flex--order-xl-5 {
+    order: 5;
+  }
+  .flex--order-xl-6 {
+    order: 6;
+  }
+  .flex--order-xl-7 {
+    order: 7;
+  }
+  .flex--order-xl-8 {
+    order: 8;
+  }
+  .flex--order-xl-9 {
+    order: 9;
+  }
+  .flex--order-xl-10 {
+    order: 10;
+  }
+  .flex--order-xl-11 {
+    order: 11;
+  }
+  .flex--order-xl-12 {
+    order: 12;
+  }
+}
diff --git a/css/gibki.min.css b/css/gibki.min.css
new file mode 100644
index 0000000..b082b3a
--- /dev/null
+++ b/css/gibki.min.css
@@ -0,0 +1 @@
+.container{-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;max-width:66.667rem;-webkit-padding-start:1rem;padding-inline-start:1rem;-webkit-padding-end:1rem;padding-inline-end:1rem;width:100%}.container .container{-webkit-padding-start:0;padding-inline-start:0;-webkit-padding-end:0;padding-inline-end:0}.flex{align-items:stretch;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.flex:not(.flex--no-gutters):not(.flex--no-horizontal-gutters){-webkit-margin-start:-1rem;margin-inline-start:-1rem;-webkit-margin-end:-1rem;margin-inline-end:-1rem}.flex:not(.flex--no-gutters):not(.flex--no-horizontal-gutters)>[class*='flex__']{-webkit-padding-start:1rem;padding-inline-start:1rem;-webkit-padding-end:1rem;padding-inline-end:1rem}.flex:not(.flex--no-gutters):not(.flex--no-vertical-gutters){row-gap:2rem}.flex--row-reverse{flex-direction:row-reverse}.flex--column{flex-direction:column}.flex--column-reverse{flex-direction:column-reverse}.flex--wrap-reverse{flex-wrap:wrap-reverse}.flex--nowrap{flex-wrap:nowrap}.flex--center{justify-content:center}.flex--right{justify-content:flex-end}.flex--space-between{justify-content:space-between}.flex--space-around{justify-content:space-around}.flex>.flex--stretch{-ms-grid-row-align:stretch;align-self:stretch}.flex--top{align-items:flex-start}.flex>.flex--top{align-self:flex-start}.flex--bottom{align-items:flex-end}.flex>.flex--bottom{align-self:flex-end}.flex--middle{align-items:center}.flex>.flex--middle{-ms-grid-row-align:center;align-self:center}.flex--baseline{align-items:baseline}.flex>.flex--baseline{align-self:baseline}[class*='flex__']{box-sizing:border-box;width:100%}.flex__auto{flex:1}.flex__1{width:8.33333%}.flex__2{width:16.66667%}.flex__3{width:25%}.flex__4{width:33.33333%}.flex__5{width:41.66667%}.flex__6{width:50%}.flex__7{width:58.33333%}.flex__8{width:66.66667%}.flex__9{width:75%}.flex__10{width:83.33333%}.flex__11{width:91.66667%}.flex__12{width:100%}.flex--order-1{order:1}.flex--order-2{order:2}.flex--order-3{order:3}.flex--order-4{order:4}.flex--order-5{order:5}.flex--order-6{order:6}.flex--order-7{order:7}.flex--order-8{order:8}.flex--order-9{order:9}.flex--order-10{order:10}.flex--order-11{order:11}.flex--order-12{order:12}.flex--offset-1{-webkit-margin-start:8.33333%;margin-inline-start:8.33333%}.flex--offset-2{-webkit-margin-start:16.66667%;margin-inline-start:16.66667%}.flex--offset-3{-webkit-margin-start:25%;margin-inline-start:25%}.flex--offset-4{-webkit-margin-start:33.33333%;margin-inline-start:33.33333%}.flex--offset-5{-webkit-margin-start:41.66667%;margin-inline-start:41.66667%}.flex--offset-6{-webkit-margin-start:50%;margin-inline-start:50%}.flex--offset-7{-webkit-margin-start:58.33333%;margin-inline-start:58.33333%}.flex--offset-8{-webkit-margin-start:66.66667%;margin-inline-start:66.66667%}.flex--offset-9{-webkit-margin-start:75%;margin-inline-start:75%}.flex--offset-10{-webkit-margin-start:83.33333%;margin-inline-start:83.33333%}.flex--offset-11{-webkit-margin-start:91.66667%;margin-inline-start:91.66667%}.flex--offset-12{-webkit-margin-start:100%;margin-inline-start:100%}@media screen and (min-width: 31.25em){.flex__sm-1{width:8.33333%}.flex__sm-2{width:16.66667%}.flex__sm-3{width:25%}.flex__sm-4{width:33.33333%}.flex__sm-5{width:41.66667%}.flex__sm-6{width:50%}.flex__sm-7{width:58.33333%}.flex__sm-8{width:66.66667%}.flex__sm-9{width:75%}.flex__sm-10{width:83.33333%}.flex__sm-11{width:91.66667%}.flex__sm-12{width:100%}.flex--offset-sm-1{-webkit-margin-start:8.33333%;margin-inline-start:8.33333%}.flex--offset-sm-2{-webkit-margin-start:16.66667%;margin-inline-start:16.66667%}.flex--offset-sm-3{-webkit-margin-start:25%;margin-inline-start:25%}.flex--offset-sm-4{-webkit-margin-start:33.33333%;margin-inline-start:33.33333%}.flex--offset-sm-5{-webkit-margin-start:41.66667%;margin-inline-start:41.66667%}.flex--offset-sm-6{-webkit-margin-start:50%;margin-inline-start:50%}.flex--offset-sm-7{-webkit-margin-start:58.33333%;margin-inline-start:58.33333%}.flex--offset-sm-8{-webkit-margin-start:66.66667%;margin-inline-start:66.66667%}.flex--offset-sm-9{-webkit-margin-start:75%;margin-inline-start:75%}.flex--offset-sm-10{-webkit-margin-start:83.33333%;margin-inline-start:83.33333%}.flex--offset-sm-11{-webkit-margin-start:91.66667%;margin-inline-start:91.66667%}.flex--offset-sm-12{-webkit-margin-start:100%;margin-inline-start:100%}.flex--order-sm-1{order:1}.flex--order-sm-2{order:2}.flex--order-sm-3{order:3}.flex--order-sm-4{order:4}.flex--order-sm-5{order:5}.flex--order-sm-6{order:6}.flex--order-sm-7{order:7}.flex--order-sm-8{order:8}.flex--order-sm-9{order:9}.flex--order-sm-10{order:10}.flex--order-sm-11{order:11}.flex--order-sm-12{order:12}}@media screen and (min-width: 43.75em){.flex__md-1{width:8.33333%}.flex__md-2{width:16.66667%}.flex__md-3{width:25%}.flex__md-4{width:33.33333%}.flex__md-5{width:41.66667%}.flex__md-6{width:50%}.flex__md-7{width:58.33333%}.flex__md-8{width:66.66667%}.flex__md-9{width:75%}.flex__md-10{width:83.33333%}.flex__md-11{width:91.66667%}.flex__md-12{width:100%}.flex--offset-md-1{-webkit-margin-start:8.33333%;margin-inline-start:8.33333%}.flex--offset-md-2{-webkit-margin-start:16.66667%;margin-inline-start:16.66667%}.flex--offset-md-3{-webkit-margin-start:25%;margin-inline-start:25%}.flex--offset-md-4{-webkit-margin-start:33.33333%;margin-inline-start:33.33333%}.flex--offset-md-5{-webkit-margin-start:41.66667%;margin-inline-start:41.66667%}.flex--offset-md-6{-webkit-margin-start:50%;margin-inline-start:50%}.flex--offset-md-7{-webkit-margin-start:58.33333%;margin-inline-start:58.33333%}.flex--offset-md-8{-webkit-margin-start:66.66667%;margin-inline-start:66.66667%}.flex--offset-md-9{-webkit-margin-start:75%;margin-inline-start:75%}.flex--offset-md-10{-webkit-margin-start:83.33333%;margin-inline-start:83.33333%}.flex--offset-md-11{-webkit-margin-start:91.66667%;margin-inline-start:91.66667%}.flex--offset-md-12{-webkit-margin-start:100%;margin-inline-start:100%}.flex--order-md-1{order:1}.flex--order-md-2{order:2}.flex--order-md-3{order:3}.flex--order-md-4{order:4}.flex--order-md-5{order:5}.flex--order-md-6{order:6}.flex--order-md-7{order:7}.flex--order-md-8{order:8}.flex--order-md-9{order:9}.flex--order-md-10{order:10}.flex--order-md-11{order:11}.flex--order-md-12{order:12}}@media screen and (min-width: 62.5em){.flex__lg-1{width:8.33333%}.flex__lg-2{width:16.66667%}.flex__lg-3{width:25%}.flex__lg-4{width:33.33333%}.flex__lg-5{width:41.66667%}.flex__lg-6{width:50%}.flex__lg-7{width:58.33333%}.flex__lg-8{width:66.66667%}.flex__lg-9{width:75%}.flex__lg-10{width:83.33333%}.flex__lg-11{width:91.66667%}.flex__lg-12{width:100%}.flex--offset-lg-1{-webkit-margin-start:8.33333%;margin-inline-start:8.33333%}.flex--offset-lg-2{-webkit-margin-start:16.66667%;margin-inline-start:16.66667%}.flex--offset-lg-3{-webkit-margin-start:25%;margin-inline-start:25%}.flex--offset-lg-4{-webkit-margin-start:33.33333%;margin-inline-start:33.33333%}.flex--offset-lg-5{-webkit-margin-start:41.66667%;margin-inline-start:41.66667%}.flex--offset-lg-6{-webkit-margin-start:50%;margin-inline-start:50%}.flex--offset-lg-7{-webkit-margin-start:58.33333%;margin-inline-start:58.33333%}.flex--offset-lg-8{-webkit-margin-start:66.66667%;margin-inline-start:66.66667%}.flex--offset-lg-9{-webkit-margin-start:75%;margin-inline-start:75%}.flex--offset-lg-10{-webkit-margin-start:83.33333%;margin-inline-start:83.33333%}.flex--offset-lg-11{-webkit-margin-start:91.66667%;margin-inline-start:91.66667%}.flex--offset-lg-12{-webkit-margin-start:100%;margin-inline-start:100%}.flex--order-lg-1{order:1}.flex--order-lg-2{order:2}.flex--order-lg-3{order:3}.flex--order-lg-4{order:4}.flex--order-lg-5{order:5}.flex--order-lg-6{order:6}.flex--order-lg-7{order:7}.flex--order-lg-8{order:8}.flex--order-lg-9{order:9}.flex--order-lg-10{order:10}.flex--order-lg-11{order:11}.flex--order-lg-12{order:12}}@media screen and (min-width: 75em){.flex__xl-1{width:8.33333%}.flex__xl-2{width:16.66667%}.flex__xl-3{width:25%}.flex__xl-4{width:33.33333%}.flex__xl-5{width:41.66667%}.flex__xl-6{width:50%}.flex__xl-7{width:58.33333%}.flex__xl-8{width:66.66667%}.flex__xl-9{width:75%}.flex__xl-10{width:83.33333%}.flex__xl-11{width:91.66667%}.flex__xl-12{width:100%}.flex--offset-xl-1{-webkit-margin-start:8.33333%;margin-inline-start:8.33333%}.flex--offset-xl-2{-webkit-margin-start:16.66667%;margin-inline-start:16.66667%}.flex--offset-xl-3{-webkit-margin-start:25%;margin-inline-start:25%}.flex--offset-xl-4{-webkit-margin-start:33.33333%;margin-inline-start:33.33333%}.flex--offset-xl-5{-webkit-margin-start:41.66667%;margin-inline-start:41.66667%}.flex--offset-xl-6{-webkit-margin-start:50%;margin-inline-start:50%}.flex--offset-xl-7{-webkit-margin-start:58.33333%;margin-inline-start:58.33333%}.flex--offset-xl-8{-webkit-margin-start:66.66667%;margin-inline-start:66.66667%}.flex--offset-xl-9{-webkit-margin-start:75%;margin-inline-start:75%}.flex--offset-xl-10{-webkit-margin-start:83.33333%;margin-inline-start:83.33333%}.flex--offset-xl-11{-webkit-margin-start:91.66667%;margin-inline-start:91.66667%}.flex--offset-xl-12{-webkit-margin-start:100%;margin-inline-start:100%}.flex--order-xl-1{order:1}.flex--order-xl-2{order:2}.flex--order-xl-3{order:3}.flex--order-xl-4{order:4}.flex--order-xl-5{order:5}.flex--order-xl-6{order:6}.flex--order-xl-7{order:7}.flex--order-xl-8{order:8}.flex--order-xl-9{order:9}.flex--order-xl-10{order:10}.flex--order-xl-11{order:11}.flex--order-xl-12{order:12}}
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..24507e6
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,83 @@
+{
+  "name": "gibki",
+  "version": "1.0.3",
+  "lockfileVersion": 1,
+  "requires": true,
+  "dependencies": {
+    "autoprefixer": {
+      "version": "10.3.4",
+      "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.3.4.tgz",
+      "integrity": "sha512-EKjKDXOq7ug+jagLzmnoTRpTT0q1KVzEJqrJd0hCBa7FiG0WbFOBCcJCy2QkW1OckpO3qgttA1aWjVbeIPAecw==",
+      "dev": true,
+      "requires": {
+        "browserslist": "^4.16.8",
+        "caniuse-lite": "^1.0.30001252",
+        "colorette": "^1.3.0",
+        "fraction.js": "^4.1.1",
+        "normalize-range": "^0.1.2",
+        "postcss-value-parser": "^4.1.0"
+      }
+    },
+    "browserslist": {
+      "version": "4.17.0",
+      "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.17.0.tgz",
+      "integrity": "sha512-g2BJ2a0nEYvEFQC208q8mVAhfNwpZ5Mu8BwgtCdZKO3qx98HChmeg448fPdUzld8aFmfLgVh7yymqV+q1lJZ5g==",
+      "dev": true,
+      "requires": {
+        "caniuse-lite": "^1.0.30001254",
+        "colorette": "^1.3.0",
+        "electron-to-chromium": "^1.3.830",
+        "escalade": "^3.1.1",
+        "node-releases": "^1.1.75"
+      }
+    },
+    "caniuse-lite": {
+      "version": "1.0.30001258",
+      "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001258.tgz",
+      "integrity": "sha512-RBByOG6xWXUp0CR2/WU2amXz3stjKpSl5J1xU49F1n2OxD//uBZO4wCKUiG+QMGf7CHGfDDcqoKriomoGVxTeA==",
+      "dev": true
+    },
+    "colorette": {
+      "version": "1.4.0",
+      "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz",
+      "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==",
+      "dev": true
+    },
+    "electron-to-chromium": {
+      "version": "1.3.843",
+      "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.843.tgz",
+      "integrity": "sha512-OWEwAbzaVd1Lk9MohVw8LxMXFlnYd9oYTYxfX8KS++kLLjDfbovLOcEEXwRhG612dqGQ6+44SZvim0GXuBRiKg==",
+      "dev": true
+    },
+    "escalade": {
+      "version": "3.1.1",
+      "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
+      "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
+      "dev": true
+    },
+    "fraction.js": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.1.tgz",
+      "integrity": "sha512-MHOhvvxHTfRFpF1geTK9czMIZ6xclsEor2wkIGYYq+PxcQqT7vStJqjhe6S1TenZrMZzo+wlqOufBDVepUEgPg==",
+      "dev": true
+    },
+    "node-releases": {
+      "version": "1.1.75",
+      "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.75.tgz",
+      "integrity": "sha512-Qe5OUajvqrqDSy6wrWFmMwfJ0jVgwiw4T3KqmbTcZ62qW0gQkheXYhcFM1+lOVcGUoRxcEcfyvFMAnDgaF1VWw==",
+      "dev": true
+    },
+    "normalize-range": {
+      "version": "0.1.2",
+      "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
+      "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=",
+      "dev": true
+    },
+    "postcss-value-parser": {
+      "version": "4.1.0",
+      "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz",
+      "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==",
+      "dev": true
+    }
+  }
+}
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..800e646
--- /dev/null
+++ b/package.json
@@ -0,0 +1,33 @@
+{
+  "name": "gibki",
+  "version": "1.0.3",
+  "description": "Gibki is an open-source and straightforward grid system based on Flexbox.",
+  "main": "css/gibki.css",
+  "style": "css/gibki.css",
+  "devDependencies": {
+    "autoprefixer": "^10.3.4"
+  },
+  "browserslist": [
+    "last 2 versions",
+    "not <= 1%",
+    "not IE 10",
+    "not IE 11"
+  ],
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git://github.com/deoostfrees/gibki.git"
+  },
+  "keywords": [
+    "grid",
+    "flexbox"
+  ],
+  "author": "de Oostfreese",
+  "license": "MIT",
+  "bugs": {
+    "url": "https://github.com/deoostfrees/Gibki/issues"
+  },
+  "homepage": "https://github.com/deoostfrees/Giki"
+}
diff --git a/scss/_functions.scss b/scss/_functions.scss
new file mode 100644
index 0000000..53f91cb
--- /dev/null
+++ b/scss/_functions.scss
@@ -0,0 +1,9 @@
+// Breakpoints
+@function breakpoint($size) {
+  @if map-has-key($flex-breakpoints, $size) {
+    @return map-get($flex-breakpoints, $size);
+  }
+
+  @warn 'Unknown `#{$size}` in $flex-breakpoints.';
+  @return null;
+}
diff --git a/scss/_mixins.scss b/scss/_mixins.scss
new file mode 100644
index 0000000..fa15848
--- /dev/null
+++ b/scss/_mixins.scss
@@ -0,0 +1,35 @@
+// flex__
+@mixin flex__($flex-breakpoint: null) {
+  $breakpoint: if($flex-breakpoint == null, null, #{$flex-breakpoint}-);
+
+  @for $i from 1 through $flex-columns {
+
+    .flex__#{$breakpoint}#{$i} {
+      width: $i / $flex-columns * 100%;
+    }
+  }
+}
+
+// flex--offset-
+@mixin flex--offset-($flex-breakpoint: null) {
+  $breakpoint: if($flex-breakpoint == null, null, #{$flex-breakpoint}-);
+
+  @for $i from 1 through $flex-columns {
+
+    .flex--offset-#{$breakpoint}#{$i} {
+      margin-inline-start: $i / $flex-columns * 100%;
+    }
+  }
+}
+
+// flex--order-
+@mixin flex--order-($flex-breakpoint: null) {
+  $breakpoint: if($flex-breakpoint == null, null, #{$flex-breakpoint}-);
+
+  @for $i from 1 through $flex-columns {
+
+    .flex--order-#{$breakpoint}#{$i} {
+      order: $i;
+    }
+  }
+}
diff --git a/scss/_variables.scss b/scss/_variables.scss
new file mode 100644
index 0000000..278dd33
--- /dev/null
+++ b/scss/_variables.scss
@@ -0,0 +1,18 @@
+// Container max width
+$container-max-width: 66.667rem !default;
+
+// Gutter width
+$flex-gutter-vertical: 2rem !default;
+$flex-gutter-horizontal: 2rem !default; // 1rem on each side of a column
+
+// Breakpoints map
+// Based on 16px Browser's internal font-size
+$flex-breakpoints: (
+  'sm': 31.25em, // 500px
+  'md': 43.75em, // 700px
+  'lg': 62.5em,  // 1000px
+  'xl': 75em     // 1200px
+) !default;
+
+// Available columns
+$flex-columns: 12 !default;
diff --git a/scss/gibki.scss b/scss/gibki.scss
new file mode 100644
index 0000000..0c39047
--- /dev/null
+++ b/scss/gibki.scss
@@ -0,0 +1,173 @@
+/**
+ * Gibki
+ *
+ * @author Benjamin de Oostfrees
+ * @version 1.0.3
+ * @url https://github.com/deoostfrees/Gibki
+ *
+ * MIT License
+ */
+
+@import
+  'variables',
+  'functions',
+  'mixins';
+
+.container {
+  margin-inline-start: auto;
+  margin-inline-end: auto;
+  max-width: $container-max-width;
+  padding-inline-start: $flex-gutter-horizontal / 2;
+  padding-inline-end: $flex-gutter-horizontal / 2;
+  width: 100%;
+
+
+  & & {
+    padding-inline-start: 0;
+    padding-inline-end: 0;
+  }
+}
+
+.flex {
+  align-items: stretch;
+  display: flex;
+  flex-direction: row;
+  flex-wrap: wrap;
+  justify-content: flex-start;
+}
+
+// Gutters
+@if $flex-gutter-horizontal > 0 {
+
+  .flex:not(.flex--no-gutters):not(.flex--no-horizontal-gutters) {
+    margin-inline-start: -$flex-gutter-horizontal / 2;
+    margin-inline-end: -$flex-gutter-horizontal / 2;
+
+
+    & > [class*='flex__'] {
+      padding-inline-start: $flex-gutter-horizontal / 2;
+      padding-inline-end: $flex-gutter-horizontal / 2;
+    }
+  }
+}
+
+@if $flex-gutter-vertical > 0 {
+
+  .flex:not(.flex--no-gutters):not(.flex--no-vertical-gutters) {
+    row-gap: $flex-gutter-horizontal;
+  }
+}
+
+.flex {
+
+
+
+  // Directions
+
+  &--row-reverse {
+    flex-direction: row-reverse;
+  }
+
+  &--column {
+    flex-direction: column;
+  }
+
+  &--column-reverse {
+    flex-direction: column-reverse;
+  }
+
+  // Wrapping
+
+  &--wrap-reverse {
+    flex-wrap: wrap-reverse;
+  }
+
+  &--nowrap {
+    flex-wrap: nowrap;
+  }
+
+  // Horizontal alignment
+
+  &--center {
+    justify-content: center;
+  }
+
+  &--right {
+    justify-content: flex-end;
+  }
+
+  &--space-between {
+    justify-content: space-between;
+  }
+
+  &--space-around {
+    justify-content: space-around;
+  }
+
+  // Vertical alignment
+
+  &--stretch {
+
+    .flex > & {
+      align-self: stretch;
+    }
+  }
+
+  &--top {
+    align-items: flex-start;
+
+    .flex > & {
+      align-self: flex-start;
+    }
+  }
+
+  &--bottom {
+    align-items: flex-end;
+
+    .flex > & {
+      align-self: flex-end;
+    }
+  }
+
+  &--middle {
+    align-items: center;
+
+    .flex > & {
+      align-self: center;
+    }
+  }
+
+  &--baseline {
+    align-items: baseline;
+
+    .flex > & {
+      align-self: baseline;
+    }
+  }
+}
+
+// flex__*
+
+[class*='flex__'] {
+  box-sizing: border-box;
+  width: 100%;
+}
+
+.flex__auto {
+  flex: 1;
+}
+
+@include flex__();
+
+// Reordering
+@include flex--order-();
+@include flex--offset-();
+
+// Responsive
+@each $key, $breakpoint in $flex-breakpoints {
+  @media screen and (min-width: breakpoint(#{$key})) {
+    @include flex__(#{$key});
+    @include flex--offset-(#{$key});
+    @include flex--order-(#{$key});
+  }
+}