diff --git a/index.html b/index.html
index 2d755b7..06fde4b 100644
--- a/index.html
+++ b/index.html
@@ -147,9 +147,30 @@
FAQ
-
Do I have to know how to program?
-
- Absolutely not, just a desire to hang out with software developers.
-
+
+
Do I have to know how to program?
+
+ Absolutely not, just a desire to hang out with software developers.
+
+
+
+
I want to learn a programming language but I have no experience. Where do I start?
+
+ Look at the "Getting Started" Learning Resources above for great starting points. Pick something you are passionate about making and work towards your goal by learning the requirements of that goal.
+
+
+
+
How do I fix errors when I run into them and don't know what do?
+
+ Google is your best friend. Usually asking your question through Google gives you a Stack Overflow article with similar issues that others have faced like you.
+
+
+
+
I want to teach something for the club that would be beneficial!
+
+ Awesome! As we explain in our meetings, anyone can come up and be the speaker for the week. If you have a topic that would benefit others then by all means we would love to hear from you! Let us know when you want to speak!
+
+
diff --git a/styles.css b/styles.css
index ba18b65..ff8e711 100644
--- a/styles.css
+++ b/styles.css
@@ -123,6 +123,31 @@ a {
padding-left: 12px;
}
-.answer {
+div[class="question1"]{
margin-left: 10px;
+ padding-bottom: 12px;
+ background-color: rgb(250,240,240);
+}
+
+div[class="question1"]>div[class="answer"]{
+ margin-left: 10px;
+ padding-bottom: 12px;
+ background-color: rgb(240,240,220);
+}
+
+div[class="question2"]{
+ margin-left: 10px;
+ padding-bottom: 12px;
+ background-color: rgb(240,240,240);
+}
+
+div[class="question2"]>div[class="answer"]{
+ margin-left: 10px;
+ padding-bottom: 12px;
+ background-color: rgb(230,240,220);
+}
+
+div[class="answer"]>b{
+ font-weight: normal;
+ text-decoration:underline;
}