+		return 
 this.onClick()}>
 			{this.props.name}
 		
;
 	}
diff --git a/src/style/default.scss b/src/style/default.scss
index 44b2ed7..d4ec085 100644
--- a/src/style/default.scss
+++ b/src/style/default.scss
@@ -1,7 +1,13 @@
 body {
-	background-color: darkgray;
+	background-image: url("./../assets/bg.png");
+	background-size: cover;
+
+	user-select: none;
+
+	color: white;
+	font-family: 'Raleway', sans-serif;
 }
 
 .center-wrapper{
-	margin-top: 30%;
+	margin-top: 25%;
 }
\ No newline at end of file
diff --git a/src/style/quick.scss b/src/style/quick.scss
index 9c89e27..30d5eae 100644
--- a/src/style/quick.scss
+++ b/src/style/quick.scss
@@ -1,5 +1,4 @@
 .quick-component {
-	border: 3px solid green;
 	width: 70%;
 	margin: auto;
 
diff --git a/src/style/quickCategory.scss b/src/style/quickCategory.scss
index 36db9a4..ac57124 100644
--- a/src/style/quickCategory.scss
+++ b/src/style/quickCategory.scss
@@ -1,3 +1,12 @@
 .quickCategory-component{
 
+	.title{
+		line-height: 3em;
+		font-weight: bold;
+		text-decoration: underline; 
+	}
+
+	.children{
+		line-height: 2em;
+	}
 }
\ No newline at end of file
diff --git a/src/style/quickItem.scss b/src/style/quickItem.scss
index e69de29..435c64a 100644
--- a/src/style/quickItem.scss
+++ b/src/style/quickItem.scss
@@ -0,0 +1,9 @@
+.quickItem-component{
+	color: rgba(#ffffff, 0.7);
+	cursor: pointer;
+
+	&:hover {
+		color: rgba(#ffffff, 1);
+	}
+
+}
\ No newline at end of file