diff --git a/index.html b/index.html
new file mode 100644
index 0000000..866ee8f
--- /dev/null
+++ b/index.html
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+ Startup Matchmaker
+
+
+
+
+
+
+
+
+
+ Because two brains taste are better than one.
+
+
+
+
+ Meet your Match!
+
+
Have a great idea for a product, but need help making it a reality? We’re here to help. Startup
+ Matchmaker is the best place for designers and developers to find each other.
+
Create a Profile
+
+
+
+
+
+
Create a Profile
+
Are you a Designer? Developer?
+ Put yourself out there so that others can find you!
+
SIGN UP NOW
+
+
+
+
Looking for a fantastic developer to
+ with on the next big thing? Look no further.
+
START YOUR SEARCH
+
+
+
Find a Designer
+
Need someone who can make a
+ product intuitive and appealing? Get ready.
+
START YOUR SEARCH
+
+
+
+
+
+
\ No newline at end of file
diff --git a/styles/main.css b/styles/main.css
new file mode 100644
index 0000000..84b4298
--- /dev/null
+++ b/styles/main.css
@@ -0,0 +1,184 @@
+html, body {
+ margin: 0;
+}
+
+.flexContainer {
+ display: flex;
+ margin: 0;
+}
+
+h1 {
+ font-family: 'Merriweather', sans-serif;
+ font-size: 32px;
+}
+
+.flexItem {
+ flex: 1;
+ margin: 0;
+}
+
+.flexStart {
+ justify-content: flex-start;
+}
+
+.flexEnd {
+ justify-content: flex-end;
+ padding-top: 30px;
+ font-size: 19px;
+ font-family: 'Oswald', sans-serif;
+}
+
+.nav {
+ list-style: none;
+ border-bottom: 4px solid yellow;
+}
+
+.nav a {
+ text-decoration: none;
+ display: inline-block;
+ padding: 10px;
+}
+
+a:hover{
+ color:yellow;
+}
+
+div {
+ flex-wrap: wrap;
+ display: inline-block;
+}
+
+.row {
+ display: flex;
+ flex-wrap: wrap;
+ padding: 25px;
+}
+
+.tagline {
+ text-align: center;
+ margin: 0;
+ padding: 25px;
+ font-size: 30px;
+ line-height: 30px;
+ font-style: italic;
+ background: #C6C6C6;
+ border-top: 2px solid #AAA;
+ font-weight: bold;
+}
+
+.tagline ins {
+ text-decoration: none;
+ border-bottom: 3px solid yellow;
+}
+
+.tagline del {
+ color: #999;
+}
+
+.banner {
+ background: url(../images/coworking.jpg) center center no-repeat;
+ background-size: cover;
+ overflow: hidden;
+ padding: 3%;
+ box-shadow: inset 0 0 5px rgba(0, 0, 0, .75);
+}
+
+section {
+ display: block;
+}
+
+.blurb {
+ background: rgba(255, 255, 255, .8);
+ width: 34%;
+ margin: 0 auto;
+ padding: 35px;
+ float: right;
+ box-shadow: 0 0 5px rgba(0, 0, 0, .75);
+}
+
+.touts {
+ display: flex;
+}
+
+.tout {
+ padding: 10px;
+ margin: 10px;
+ margin-left: 5%;
+ border: 10px;
+ display: inline-flex;
+ box-shadow: inset -1px 0 0 rgba(0, 0, 0, .15);
+ font-family: 'Merriweather', sans-serif;
+}
+
+.tout .button {
+ background: #c6c6c6;
+}
+
+.tout:last-child {
+ box-shadow: none;
+}
+
+.button {
+ background: #C6C6C6;
+ font-family: 'Oswald', sans-serif;
+ text-decoration: none;
+ letter-spacing: 1px;
+ font-weight: bolder;
+ color: black;
+ display:block;
+ background: yellow;
+ text-align: center;
+ padding: 23px;
+ box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .2);
+ border-radius: 5px;
+ text-transform: uppercase;
+}
+
+h3, p {
+ font-family: 'Merriweather', serif;
+ font-size: 28px;
+}
+
+.col {
+ width: 8.3333%;
+ /* min-height: 100%; */
+}
+
+.col-2 {
+ width: calc(2 * 8.3333%);
+}
+
+.col-3 {
+ width: calc(3 * 8.3333%);
+}
+
+.col-12 {
+ width: calc(12 * 8.3333%);
+}
+
+.black {
+ background-color: black;
+}
+
+.yellow {
+ background-color: yellow;
+}
+
+.grey {
+ background-color: grey;
+}
+
+.wcolor {
+ color: white;
+}
+
+.fcolor {
+ color: yellow;
+}
+
+footer {
+ color: white;
+ font-weight: 900;
+ font-size: inherit;
+ padding-top: 20px;
+}
\ No newline at end of file