diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..0d31019
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+.sass-cache/
diff --git a/fonts/ClearSans-Bold-webfont.eot b/fonts/ClearSans-Bold-webfont.eot
new file mode 100755
index 0000000..3678ef2
Binary files /dev/null and b/fonts/ClearSans-Bold-webfont.eot differ
diff --git a/fonts/ClearSans-Bold-webfont.svg b/fonts/ClearSans-Bold-webfont.svg
new file mode 100755
index 0000000..aa985ae
--- /dev/null
+++ b/fonts/ClearSans-Bold-webfont.svg
@@ -0,0 +1,640 @@
+
+
+
\ No newline at end of file
diff --git a/fonts/ClearSans-Bold-webfont.woff b/fonts/ClearSans-Bold-webfont.woff
new file mode 100755
index 0000000..184a945
Binary files /dev/null and b/fonts/ClearSans-Bold-webfont.woff differ
diff --git a/fonts/ClearSans-Light-webfont.eot b/fonts/ClearSans-Light-webfont.eot
new file mode 100755
index 0000000..0dc609d
Binary files /dev/null and b/fonts/ClearSans-Light-webfont.eot differ
diff --git a/fonts/ClearSans-Light-webfont.svg b/fonts/ClearSans-Light-webfont.svg
new file mode 100755
index 0000000..1d5d2ec
--- /dev/null
+++ b/fonts/ClearSans-Light-webfont.svg
@@ -0,0 +1,670 @@
+
+
+
\ No newline at end of file
diff --git a/fonts/ClearSans-Light-webfont.woff b/fonts/ClearSans-Light-webfont.woff
new file mode 100755
index 0000000..44555e0
Binary files /dev/null and b/fonts/ClearSans-Light-webfont.woff differ
diff --git a/fonts/ClearSans-Regular-webfont.eot b/fonts/ClearSans-Regular-webfont.eot
new file mode 100755
index 0000000..b020e05
Binary files /dev/null and b/fonts/ClearSans-Regular-webfont.eot differ
diff --git a/fonts/ClearSans-Regular-webfont.svg b/fonts/ClearSans-Regular-webfont.svg
new file mode 100755
index 0000000..1e2cffd
--- /dev/null
+++ b/fonts/ClearSans-Regular-webfont.svg
@@ -0,0 +1,669 @@
+
+
+
\ No newline at end of file
diff --git a/fonts/ClearSans-Regular-webfont.woff b/fonts/ClearSans-Regular-webfont.woff
new file mode 100755
index 0000000..9d58858
Binary files /dev/null and b/fonts/ClearSans-Regular-webfont.woff differ
diff --git a/fonts/clear-sans.css b/fonts/clear-sans.css
new file mode 100755
index 0000000..255eec1
--- /dev/null
+++ b/fonts/clear-sans.css
@@ -0,0 +1,30 @@
+@font-face {
+ font-family: "Clear Sans";
+ src: url("ClearSans-Light-webfont.eot");
+ src: url("ClearSans-Light-webfont.eot?#iefix") format("embedded-opentype"),
+ url("ClearSans-Light-webfont.svg#clear_sans_lightregular") format("svg"),
+ url("ClearSans-Light-webfont.woff") format("woff");
+ font-weight: normal;
+ font-style: normal;
+}
+
+@font-face {
+ font-family: "Clear Sans";
+ src: url("ClearSans-Regular-webfont.eot");
+ src: url("ClearSans-Regular-webfont.eot?#iefix") format("embedded-opentype"),
+ url("ClearSans-Regular-webfont.svg#clear_sansregular") format("svg"),
+ url("ClearSans-Regular-webfont.woff") format("woff");
+ font-weight: 300;
+ font-style: normal;
+}
+
+@font-face {
+ font-family: "Clear Sans";
+ src: url("ClearSans-Bold-webfont.eot");
+ src: url("ClearSans-Bold-webfont.eot?#iefix") format("embedded-opentype"),
+ url("ClearSans-Bold-webfont.svg#clear_sansbold") format("svg"),
+ url("ClearSans-Bold-webfont.woff") format("woff");
+ font-weight: 700;
+ font-style: normal;
+}
+
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..1731d83
--- /dev/null
+++ b/index.html
@@ -0,0 +1,43 @@
+
+
+
+
+ 2048
+
+
+
+
+
+
+
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..81cd5fa
--- /dev/null
+++ b/style.css
@@ -0,0 +1,15 @@
+@import url(fonts/clear-sans.css);
+html, body {
+ margin: 0;
+ padding: 0;
+ background: #faf8ef;
+ color: #776E65;
+ font-family: "Clear Sans", "Helvetica Neue", Arial, sans-serif; }
+
+h1 {
+ font-size: 80px;
+ font-weight: bold; }
+
+.container {
+ width: 600px;
+ margin: 0 auto; }
diff --git a/style.scss b/style.scss
new file mode 100644
index 0000000..1def291
--- /dev/null
+++ b/style.scss
@@ -0,0 +1,20 @@
+@import "fonts/clear-sans.css";
+
+html, body {
+ margin: 0;
+ padding: 0;
+
+ background: #faf8ef;
+ color: #776E65;
+ font-family: "Clear Sans", "Helvetica Neue", Arial, sans-serif;
+}
+
+h1 {
+ font-size: 80px;
+ font-weight: bold;
+}
+
+.container {
+ width: 600px;
+ margin: 0 auto;
+}