diff --git a/illustration.svg b/illustration.svg
new file mode 100644
index 0000000..d67a961
--- /dev/null
+++ b/illustration.svg
@@ -0,0 +1,21 @@
+
\ No newline at end of file
diff --git a/index.html b/index.html
index 2f6e24e..9eaeddd 100644
--- a/index.html
+++ b/index.html
@@ -1,21 +1,25 @@
-
-
-
+
+
+
Hello!
-
+
-
-
+
+
-
+
- Hello world!
-
+
+
+
Hello world!
+

+
+
diff --git a/style.css b/style.css
index 8148719..4f9f7d1 100644
--- a/style.css
+++ b/style.css
@@ -1,12 +1,38 @@
-/* CSS files add styling rules to your content */
+/* Our CSS values that we'll use in the rest of our styling */
+:root {
+ --main-bg-color: #69F7BE;
+ --main-text-color: #373fff;
+}
+
+
body {
font-family: helvetica, arial, sans-serif;
- margin: 2em;
- background-color: #69F7BE;
+ background-color: var(--main-bg-color);
}
h1 {
- color: #373fff;
+ color: var(--main-text-color);
font-size: 164pt;
}
+
+.wrapper {
+ min-height: 100vh; // height of the browser viewport
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.content {
+ height: 100px;
+ width: 200px;
+ background: #fff;
+ padding: 50px;
+ border-radius: 10px;
+ position: relative;
+ text-align: center;
+}
+
+.illustration {
+
+}
\ No newline at end of file