diff --git a/css/about-style.css b/css/about-style.css
new file mode 100644
index 0000000..9320dd7
--- /dev/null
+++ b/css/about-style.css
@@ -0,0 +1,105 @@
+* {
+ font-family: "Roboto";
+}
+
+.about-section {
+ min-height: 300px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+ padding: 50px;
+}
+.about-section #about {
+ font-size: 18px;
+ font-weight: 700;
+ line-height: 22px;
+ color: #283FA6;
+}
+.about-section h2 {
+ font-size: 36px;
+ line-height: 45px;
+ text-align: center;
+ margin: 20px;
+}
+
+.team {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+ padding: 50px;
+ background-color: #F4F6F8;
+}
+.team h3 {
+ font-size: 32px;
+ font-weight: 700;
+ line-height: 42px;
+ margin: 20px;
+}
+.team #we-are {
+ font-size: 18px;
+ line-height: 20px;
+ font-weight: 700;
+ color: #283FA6;
+}
+
+.paragraph {
+ display: block;
+ max-width: 750px;
+ line-height: 20px;
+ font-size: 14px;
+ text-align: center;
+ margin: 20px;
+}
+
+.photo-team {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ padding: 50px;
+ background-color: #F4F6F8;
+}
+.photo-team h4 {
+ font-size: 24px;
+ line-height: 30px;
+ text-align: center;
+ margin: 10px;
+}
+.photo-team p {
+ font-size: 16px;
+ line-height: 24px;
+ text-align: center;
+}
+
+#board {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ grid-template-rows: 1fr;
+ gap: 150px 150px;
+ grid-template-areas: ". .";
+}
+#board img {
+ width: 240px;
+ height: auto;
+ margin-right: 50px;
+ margin-left: 50px;
+ clip-path: circle(50% at 50% 50%);
+}
+
+#other-team {
+ display: grid;
+ grid-template-columns: 1fr 1fr 1fr;
+ grid-template-rows: 1fr;
+ gap: 20px 20px;
+ grid-template-areas: ". . .";
+}
+#other-team img {
+ width: 150px;
+ height: auto;
+ margin-right: 100px;
+ margin-left: 100px;
+ clip-path: circle(50% at 50% 50%);
+}
+
+/*# sourceMappingURL=about-style.css.map */
diff --git a/css/about-style.css.map b/css/about-style.css.map
new file mode 100644
index 0000000..7de7a9d
--- /dev/null
+++ b/css/about-style.css.map
@@ -0,0 +1 @@
+{"version":3,"sourceRoot":"","sources":["about-style.scss"],"names":[],"mappings":"AAgBA;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA,OA9BQ;;AAiCZ;EACI;EACA;EACA;EACA;;;AAMR;EACI;EACA;EACA;EACA;EACA;EACA,kBAtCQ;;AAwCR;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA,OA9DQ;;;AAmEhB;EACI;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACI;EACA;EACA;EACA;EACA,kBAvEQ;;AAyER;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;;AAIR;EACI;EACA;EACA;EACA;EACA,qBACI;;AAEA;EACI;EACA;EACA;EACA;EACA;;;AAIZ;EACI;EACA;EACA;EACA;EACA,qBACI;;AAEA;EACI;EACA;EACA;EACA;EACA","file":"about-style.css"}
\ No newline at end of file
diff --git a/css/about-style.scss b/css/about-style.scss
new file mode 100644
index 0000000..e4911de
--- /dev/null
+++ b/css/about-style.scss
@@ -0,0 +1,133 @@
+$primary-color: #FEDD01;
+$secondary-color: #3080EC;
+$secondary-700: #283FA6;
+
+//Dark Theme
+$dark-300: #ADB0BB;
+$dark-400: #42464D;
+$dark-500: #282C34;
+$dark-600: #1C2025;
+$dark-700: #0E1117;
+
+//Light Theme
+$text: #ffffff;
+$light-600: #F4F6F8;
+
+
+* {
+ font-family: 'Roboto'
+}
+
+.about-section {
+ min-height: 300px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+ padding: 50px;
+
+ #about {
+ font-size: 18px;
+ font-weight: 700;
+ line-height: 22px;
+ color: $secondary-700;
+ }
+
+ h2 {
+ font-size: 36px;
+ line-height: 45px;
+ text-align: center;
+ margin: 20px;
+ }
+
+
+}
+
+.team {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+ padding: 50px;
+ background-color: $light-600;
+
+ h3 {
+ font-size: 32px;
+ font-weight: 700;
+ line-height: 42px;
+ margin: 20px;
+ }
+
+ #we-are {
+ font-size: 18px;
+ line-height: 20px;
+ font-weight: 700;
+ color: $secondary-700;
+ }
+
+}
+
+.paragraph {
+ display: block;
+ max-width: 750px;
+ line-height: 20px;
+ font-size: 14px;
+ text-align: center;
+ margin: 20px;
+
+}
+
+.photo-team {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ padding: 50px;
+ background-color: $light-600;
+
+ h4{
+ font-size: 24px;
+ line-height: 30px;
+ text-align: center;
+ margin: 10px;
+ }
+
+ p{
+ font-size: 16px;
+ line-height: 24px;
+ text-align: center;
+ }
+}
+
+#board {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ grid-template-rows: 1fr;
+ gap: 150px 150px;
+ grid-template-areas:
+ ". .";
+
+ img{
+ width: 240px;
+ height: auto;
+ margin-right: 50px;
+ margin-left: 50px;
+ clip-path: circle(50% at 50% 50%);
+ }
+}
+
+#other-team {
+ display: grid;
+ grid-template-columns: 1fr 1fr 1fr;
+ grid-template-rows: 1fr;
+ gap: 20px 20px;
+ grid-template-areas:
+ ". . .";
+
+ img{
+ width: 150px;
+ height: auto;
+ margin-right: 100px;
+ margin-left: 100px;
+ clip-path: circle(50% at 50% 50%);
+ }
+}
\ No newline at end of file
diff --git a/css/contact-style.css b/css/contact-style.css
new file mode 100644
index 0000000..1223c28
--- /dev/null
+++ b/css/contact-style.css
@@ -0,0 +1,45 @@
+.contact-form {
+ min-width: 500px;
+ height: auto;
+ display: flex;
+ flex-direction: column;
+ padding: 20px;
+ margin-top: 30px;
+ border-radius: 5px;
+ box-shadow: 2px 2px 20px 10px rgba(0, 0, 0, 0.15);
+}
+.contact-form input,
+.contact-form textarea {
+ height: 50px;
+ font-size: 16px;
+ line-height: 20px;
+ color: #42464D;
+ margin: 10px;
+ border-radius: 5px;
+ border: 1px solid #0E1117;
+}
+.contact-form .contact-input {
+ padding-left: 20px;
+}
+.contact-form .contact-input:focus {
+ border: 2px solid #FEDD01;
+ color: #0E1117;
+ outline: none;
+}
+.contact-form h4 {
+ margin: 10px;
+}
+.contact-form #message {
+ min-height: 100px;
+ padding: 20px;
+ margin-bottom: 20px;
+}
+
+#contact-container {
+ max-width: 1200px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+/*# sourceMappingURL=contact-style.css.map */
diff --git a/css/contact-style.css.map b/css/contact-style.css.map
new file mode 100644
index 0000000..4231b81
--- /dev/null
+++ b/css/contact-style.css.map
@@ -0,0 +1 @@
+{"version":3,"sourceRoot":"","sources":["contact-style.scss"],"names":[],"mappings":"AAeA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;EAEI;EACA;EACA;EACA,OAxBG;EAyBH;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA,OAjCG;EAkCH;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;;;AAIR;EACI;EACA;EACA;EACA","file":"contact-style.css"}
\ No newline at end of file
diff --git a/css/contact-style.scss b/css/contact-style.scss
new file mode 100644
index 0000000..cea5b7d
--- /dev/null
+++ b/css/contact-style.scss
@@ -0,0 +1,63 @@
+$primary-color: #FEDD01;
+$secondary-color: #3080EC;
+$secondary-700: #283FA6;
+
+//Dark Theme
+$dark-300: #ADB0BB;
+$dark-400: #42464D;
+$dark-500: #282C34;
+$dark-600: #1C2025;
+$dark-700: #0E1117;
+
+//Light Theme
+$text: #ffffff;
+$light-600: #F4F6F8;
+
+.contact-form {
+ min-width: 500px;
+ height: auto;
+ display: flex;
+ flex-direction: column;
+ padding: 20px;
+ margin-top: 30px;
+ border-radius: 5px;
+ box-shadow: 2px 2px 20px 10px rgba(0, 0, 0, 0.15);
+
+ input,
+ textarea {
+ height: 50px;
+ font-size: 16px;
+ line-height: 20px;
+ color: $dark-400;
+ margin: 10px;
+ border-radius: 5px;
+ border: 1px solid $dark-700;
+ }
+
+ .contact-input {
+ padding-left: 20px;
+ }
+
+ .contact-input:focus {
+ border: 2px solid $primary-color;
+ color: $dark-700;
+ outline: none;
+ }
+
+ h4 {
+ margin: 10px;
+ }
+
+ #message {
+ min-height: 100px;
+ padding: 20px;
+ margin-bottom: 20px;
+ }
+}
+
+#contact-container {
+ max-width: 1200px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
\ No newline at end of file
diff --git a/css/developers-style.css b/css/developers-style.css
new file mode 100644
index 0000000..8470824
--- /dev/null
+++ b/css/developers-style.css
@@ -0,0 +1,60 @@
+.banner-page {
+ max-width: 1200px;
+ width: 100%;
+ min-height: 580px;
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ grid-template-rows: 1fr;
+ gap: 20px 20px;
+ grid-template-areas: ". .";
+}
+
+.banner-column {
+ font-size: 16px;
+ line-height: 24px;
+ padding: 50px;
+}
+
+#banner-text {
+ color: #0E1117;
+ margin: 50px;
+}
+
+.sub-title {
+ font-size: 32px;
+ line-height: 42px;
+ text-align: center;
+ margin: 40px;
+}
+
+.why-join,
+.hire-quality {
+ max-width: 1200px;
+ width: 100%;
+ min-height: 580px;
+ color: #0E1117;
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ grid-template-rows: 1fr;
+ gap: 20px 20px;
+ grid-template-areas: ". .";
+}
+
+.button-banner {
+ width: 100%;
+ height: 300px;
+ color: #ffffff;
+ background-color: #42464D;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+}
+.button-banner h4 {
+ text-align: center;
+ font-size: 32px;
+ line-height: 42px;
+ margin: 40px;
+}
+
+/*# sourceMappingURL=developers-style.css.map */
diff --git a/css/developers-style.css.map b/css/developers-style.css.map
new file mode 100644
index 0000000..1145156
--- /dev/null
+++ b/css/developers-style.css.map
@@ -0,0 +1 @@
+{"version":3,"sourceRoot":"","sources":["developers-style.scss"],"names":[],"mappings":"AAgBA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA,qBACI;;;AAGR;EACI;EACA;EACA;;;AAIJ;EACI,OA5BO;EA6BP;;;AAKJ;EACI;EACA;EACA;EACA;;;AAGJ;AAAA;EAEI;EACA;EACA;EACA,OA9CO;EA+CP;EACA;EACA;EACA;EACA,qBACI;;;AAKR;EACQ;EACA;EACA,OAzDD;EA0DC,kBAhEG;EAiEH;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA","file":"developers-style.css"}
\ No newline at end of file
diff --git a/css/developers-style.scss b/css/developers-style.scss
new file mode 100644
index 0000000..76105ae
--- /dev/null
+++ b/css/developers-style.scss
@@ -0,0 +1,83 @@
+$primary-color: #FEDD01;
+$secondary-color: #3080EC;
+
+//Dark Theme
+$dark-300: #ADB0BB;
+$dark-400: #42464D;
+$dark-500: #282C34;
+$dark-600: #1C2025;
+$dark-700: #0E1117;
+
+//Light Theme
+$text: #ffffff;
+$light-600: #F4F6F8;
+
+//Banner
+
+.banner-page {
+ max-width: 1200px;
+ width: 100%;
+ min-height: 580px;
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ grid-template-rows: 1fr;
+ gap: 20px 20px;
+ grid-template-areas:
+ ". .";
+}
+
+.banner-column {
+ font-size: 16px;
+ line-height: 24px;
+ padding: 50px;
+
+}
+
+#banner-text {
+ color: $dark-700;
+ margin: 50px;
+}
+
+//Benefits
+
+.sub-title {
+ font-size: 32px;
+ line-height: 42px;
+ text-align: center;
+ margin: 40px;
+}
+
+.why-join,
+.hire-quality {
+ max-width: 1200px;
+ width: 100%;
+ min-height: 580px;
+ color: $dark-700;
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ grid-template-rows: 1fr;
+ gap: 20px 20px;
+ grid-template-areas:
+ ". .";
+}
+
+//Bottom Banner Section
+
+.button-banner{
+ width: 100%;
+ height: 300px;
+ color: $text;
+ background-color: $dark-400;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+
+ h4{
+ text-align: center;
+ font-size: 32px;
+ line-height: 42px;
+ margin: 40px;
+ }
+
+}
\ No newline at end of file
diff --git a/css/footer-style.css b/css/footer-style.css
new file mode 100644
index 0000000..847bb2e
--- /dev/null
+++ b/css/footer-style.css
@@ -0,0 +1,103 @@
+footer {
+ width: 100%;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ background-color: #0E1117;
+ color: #ffffff;
+}
+footer a,
+footer a:visited {
+ text-decoration: none;
+ color: #ffffff;
+}
+
+.container {
+ max-width: 1200px;
+ width: 90%;
+ padding: 40px;
+ display: grid;
+ grid-template-columns: 1fr 1fr 1fr 1fr;
+ grid-template-rows: 1fr;
+ gap: 20px 20px;
+ grid-template-areas: ". . . .";
+}
+.container h3 {
+ margin-top: 20px;
+ margin-left: 10px;
+ text-align: left;
+}
+.container li {
+ list-style: none;
+ margin: 30px;
+}
+
+#social ul {
+ display: flex;
+ flex-direction: row;
+}
+#social ul li {
+ margin: 10px;
+}
+#social ul i {
+ font-size: 30px;
+}
+
+hr {
+ max-width: 1200px;
+ width: 90%;
+ color: #42464D;
+}
+
+#r-brand {
+ color: #ADB0BB;
+}
+
+#forms {
+ display: flex;
+ flex-direction: column;
+}
+#forms input,
+#forms textarea {
+ margin: 10px;
+ min-height: 50px;
+ border-radius: 5px;
+ font-size: 14px;
+ line-height: 20px;
+}
+#forms .input {
+ padding-left: 10px;
+ background-color: transparent;
+ border: 1px solid #ADB0BB;
+ color: #ADB0BB;
+}
+#forms .input:focus {
+ border: 2px solid #FEDD01;
+ color: #ffffff;
+ outline: none;
+}
+#forms #message {
+ height: 100px;
+ padding-top: 20px;
+}
+
+#send,
+#send-footer {
+ background-color: #FEDD01;
+ color: #0E1117;
+ font-weight: 700;
+ cursor: pointer;
+ border: none;
+}
+
+#send:active,
+#send-footer:active {
+ transform: translate(0px, 2px);
+}
+
+.legals {
+ text-align: right;
+}
+
+/*# sourceMappingURL=footer-style.css.map */
diff --git a/css/footer-style.css.map b/css/footer-style.css.map
new file mode 100644
index 0000000..b6cf6b5
--- /dev/null
+++ b/css/footer-style.css.map
@@ -0,0 +1 @@
+{"version":3,"sourceRoot":"","sources":["footer-style.scss"],"names":[],"mappings":"AAWA;EACI;EACA;EACA;EACA;EACA;EACA,kBATO;EAUP,OATG;;AAWH;AAAA;EAEQ;EACA,OAdL;;;AAkBP;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA,qBACI;;AAEJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;;;AAQJ;EACI;EACA;;AAEA;EACI;;AAGJ;EACI;;;AAMZ;EACI;EACA;EACA,OAnEO;;;AAsEX;EACI,OAxEO;;;AA2EX;EACI;EACA;;AAEA;AAAA;EAEI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA,OA5FG;;AA+FP;EACI;EACA,OA5FD;EA6FC;;AAGJ;EACI;EACA;;;AAIR;AAAA;EAEI,kBAjHY;EAkHZ,OA1GO;EA2GP;EACA;EACA;;;AAGJ;AAAA;EAEI;;;AAGJ;EACI","file":"footer-style.css"}
\ No newline at end of file
diff --git a/css/footer-style.scss b/css/footer-style.scss
new file mode 100644
index 0000000..5f7d9c7
--- /dev/null
+++ b/css/footer-style.scss
@@ -0,0 +1,128 @@
+$primary-color: #FEDD01;
+$secondary-color: #3080EC;
+
+//Dark Theme
+$dark-300: #ADB0BB;
+$dark-400: #42464D;
+$dark-500: #282C34;
+$dark-600: #1C2025;
+$dark-700: #0E1117;
+$text: #ffffff;
+
+footer {
+ width: 100%;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ background-color: $dark-700;
+ color: $text;
+
+ a,
+ a:visited {
+ text-decoration: none;
+ color: $text;
+ }
+}
+
+.container {
+ max-width: 1200px;
+ width: 90%;
+ padding: 40px;
+ display: grid;
+ grid-template-columns: 1fr 1fr 1fr 1fr;
+ grid-template-rows: 1fr;
+ gap: 20px 20px;
+ grid-template-areas:
+ ". . . .";
+
+ h3 {
+ margin-top: 20px;
+ margin-left: 10px;
+ text-align: left;
+ }
+
+ li {
+ list-style: none;
+ margin: 30px;
+
+ }
+}
+
+
+#social {
+
+ ul {
+ display: flex;
+ flex-direction: row;
+
+ li{
+ margin: 10px;
+ }
+
+ i{
+ font-size: 30px;
+ }
+ }
+
+}
+
+hr{
+ max-width: 1200px;
+ width: 90%;
+ color: $dark-400;
+}
+
+#r-brand{
+ color: $dark-300;
+}
+
+#forms{
+ display: flex;
+ flex-direction: column;
+
+ input,
+ textarea{
+ margin: 10px;
+ min-height: 50px;
+ border-radius: 5px;
+ font-size: 14px;
+ line-height: 20px;
+ }
+
+ .input{
+ padding-left: 10px;
+ background-color: transparent;
+ border: 1px solid $dark-300;
+ color: $dark-300;
+ }
+
+ .input:focus{
+ border: 2px solid $primary-color;
+ color: $text;
+ outline: none;
+ }
+
+ #message{
+ height: 100px;
+ padding-top: 20px;
+ }
+}
+
+#send,
+#send-footer{
+ background-color: $primary-color;
+ color: $dark-700;
+ font-weight: 700;
+ cursor: pointer;
+ border: none;
+}
+
+#send:active,
+#send-footer:active{
+ transform: translate(0px, 2px);
+}
+
+.legals{
+ text-align: right;
+}
\ No newline at end of file
diff --git a/css/general-style.css b/css/general-style.css
new file mode 100644
index 0000000..aa5c047
--- /dev/null
+++ b/css/general-style.css
@@ -0,0 +1,153 @@
+* {
+ font-family: "Roboto", sans-serif;
+}
+
+.banner-column {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ color: #ffffff;
+ font-size: 16px;
+ line-height: 24px;
+ padding: 50px;
+}
+.banner-column img {
+ width: 100%;
+ height: auto;
+}
+.banner-column h1,
+.banner-column h3 {
+ font-size: 36px;
+ line-height: 40px;
+ margin-bottom: 30px;
+}
+
+.main-column {
+ max-width: 1200px;
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ grid-template-rows: 1fr;
+ gap: 20px 20px;
+ grid-template-areas: ". .";
+}
+
+.cta {
+ display: flex;
+ flex-direction: row;
+}
+
+.primary {
+ width: 200px;
+ height: 50px;
+ margin: 20px;
+ margin-left: 0px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ border-radius: 5px;
+ background-color: #FEDD01;
+ border: 2px solid #FEDD01;
+ cursor: pointer;
+}
+.primary a,
+.primary a:visited {
+ color: #0E1117;
+ font-weight: 700;
+ text-decoration: none;
+}
+
+.secondary {
+ width: 200px;
+ height: 50px;
+ margin: 20px;
+ margin-left: 0px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ border-radius: 5px;
+ border: 2px solid #FEDD01;
+}
+.secondary a {
+ color: #FEDD01;
+ font-weight: 500;
+ text-decoration: none;
+}
+
+.primary:hover,
+.secondary:hover {
+ transform: translate(0px, -5px);
+ box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
+}
+
+.column {
+ display: flex;
+ justify-content: center;
+}
+
+.benefits {
+ width: 1200px;
+ padding: 50px;
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ justify-content: space-evenly;
+}
+.benefits .benefits-single {
+ width: 300px;
+ height: 100px;
+ display: grid;
+ grid-template-columns: 1fr 2fr;
+ grid-template-rows: 1fr;
+ gap: 10px 10px;
+ grid-template-areas: ". .";
+ border-radius: 5px;
+ box-shadow: 2px 2px 20px 10px rgba(0, 0, 0, 0.15);
+}
+.benefits .icon {
+ width: 60px;
+ height: 60px;
+ margin-left: 20px;
+ margin-top: 20px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 5px;
+ background-color: #F4F6F8;
+}
+.benefits .icon i {
+ color: #3080EC;
+ font-size: 30px;
+}
+.benefits .benefit-text {
+ max-height: 60px;
+ margin-top: 20px;
+}
+.benefits .benefit-text h5 {
+ font-size: 18px;
+ line-height: 24px;
+}
+.benefits .benefit-text p {
+ font-size: 13px;
+ line-height: 18px;
+}
+
+.subtitle {
+ font-size: 18px;
+ line-height: 22px;
+ font-weight: 700;
+ color: #283FA6;
+}
+
+.success {
+ color: #28A745;
+ font-size: 14px;
+ line-height: 20px;
+}
+
+.failed {
+ color: #DC3546;
+ font-size: 14px;
+ line-height: 20px;
+}
+
+/*# sourceMappingURL=general-style.css.map */
diff --git a/css/general-style.css.map b/css/general-style.css.map
new file mode 100644
index 0000000..2ea5e3f
--- /dev/null
+++ b/css/general-style.css.map
@@ -0,0 +1 @@
+{"version":3,"sourceRoot":"","sources":["general-style.scss"],"names":[],"mappings":"AAoBA;EACI;;;AAIJ;EACI;EACA;EACA;EACA,OAjBG;EAkBH;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;AAAA;EAEI;EACA;EACA;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA,qBACI;;;AAIR;EACI;EACA;;;AAIJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBAzEY;EA0EZ;EACA;;AAEA;AAAA;EAEI,OAtEG;EAuEH;EACA;;;AAKR;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI,OAnGQ;EAoGR;EACA;;;AAKR;AAAA;EAEI;EACA;;;AAMJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA,qBACI;EACJ;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBAzII;;AA2IJ;EACI,OAxJM;EAyJN;;AAIR;EACI;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;;;AAMZ;EACI;EACA;EACA;EACA,OAjLY;;;AAqLhB;EACI,OAxKM;EAyKN;EACA;;;AAGJ;EACI,OA5KI;EA6KJ;EACA","file":"general-style.css"}
\ No newline at end of file
diff --git a/css/general-style.scss b/css/general-style.scss
new file mode 100644
index 0000000..7fa3af0
--- /dev/null
+++ b/css/general-style.scss
@@ -0,0 +1,194 @@
+$primary-color: #FEDD01;
+$secondary-color: #3080EC;
+$secondary-700: #283FA6;
+
+//Dark Theme
+$dark-300: #ADB0BB;
+$dark-400: #42464D;
+$dark-500: #282C34;
+$dark-600: #1C2025;
+$dark-700: #0E1117;
+
+//Light Theme
+$text: #ffffff;
+$light-600: #F4F6F8;
+
+//Alerts
+$success: #28A745;
+$warning: #FFC107;
+$error: #DC3546;
+
+* {
+ font-family: 'Roboto', sans-serif;
+}
+
+//Main Banner Column
+.banner-column {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ color: $text;
+ font-size: 16px;
+ line-height: 24px;
+ padding: 50px;
+
+ img {
+ width: 100%;
+ height: auto;
+ }
+
+ h1,
+ h3 {
+ font-size: 36px;
+ line-height: 40px;
+ margin-bottom: 30px;
+ }
+}
+
+.main-column {
+ max-width: 1200px;
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ grid-template-rows: 1fr;
+ gap: 20px 20px;
+ grid-template-areas:
+ ". .";
+}
+
+//CTA Section
+.cta {
+ display: flex;
+ flex-direction: row;
+}
+
+//Primary Button Styles
+.primary {
+ width: 200px;
+ height: 50px;
+ margin: 20px;
+ margin-left: 0px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ border-radius: 5px;
+ background-color: $primary-color;
+ border: 2px solid $primary-color;
+ cursor: pointer;
+
+ a,
+ a:visited {
+ color: $dark-700;
+ font-weight: 700;
+ text-decoration: none;
+ }
+}
+
+//Secondary Button Styles
+.secondary {
+
+ width: 200px;
+ height: 50px;
+ margin: 20px;
+ margin-left: 0px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ border-radius: 5px;
+ border: 2px solid $primary-color;
+
+ a {
+ color: $primary-color;
+ font-weight: 500;
+ text-decoration: none;
+ }
+}
+
+//Buttons Hover
+.primary:hover,
+.secondary:hover {
+ transform: translate(0px, -5px);
+ box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
+}
+
+//How it Works Section
+//Benefits Section
+
+.column{
+ display: flex;
+ justify-content: center;
+}
+
+.benefits {
+ width: 1200px;
+ padding: 50px;
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ justify-content: space-evenly;
+
+ .benefits-single {
+ width: 300px;
+ height: 100px;
+ display: grid;
+ grid-template-columns: 1fr 2fr;
+ grid-template-rows: 1fr;
+ gap: 10px 10px;
+ grid-template-areas:
+ ". .";
+ border-radius: 5px;
+ box-shadow: 2px 2px 20px 10px rgba(0, 0, 0, 0.15);
+ }
+
+ .icon {
+ width: 60px;
+ height: 60px;
+ margin-left: 20px;
+ margin-top: 20px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 5px;
+ background-color: $light-600;
+
+ i {
+ color: $secondary-color;
+ font-size: 30px;
+ }
+ }
+
+ .benefit-text {
+ max-height: 60px;
+ margin-top: 20px;
+
+ h5 {
+ font-size: 18px;
+ line-height: 24px;
+ }
+
+ p {
+ font-size: 13px;
+ line-height: 18px;
+ }
+ }
+}
+
+//Client and Developer Subtitle
+.subtitle {
+ font-size: 18px;
+ line-height: 22px;
+ font-weight: 700;
+ color: $secondary-700;
+}
+
+//Email Alerts
+.success {
+ color: $success;
+ font-size: 14px;
+ line-height: 20px;
+}
+
+.failed {
+ color: $error;
+ font-size: 14px;
+ line-height: 20px;
+}
\ No newline at end of file
diff --git a/css/header-style.css b/css/header-style.css
new file mode 100644
index 0000000..41db4cb
--- /dev/null
+++ b/css/header-style.css
@@ -0,0 +1,94 @@
+* {
+ margin: 0px;
+ padding: 0px;
+}
+
+header {
+ width: 100%;
+ height: 60px;
+ display: flex;
+ justify-content: center;
+ background-color: #282C34;
+ color: #ffffff;
+}
+
+#header-container {
+ max-width: 1200px;
+ width: 90%;
+ display: grid;
+ grid-template-columns: 1fr 2fr 1fr;
+ grid-template-rows: 1fr;
+ gap: 10px;
+ grid-template-areas: ". . .";
+}
+
+.navbar {
+ width: 100%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.navbar #logo {
+ width: 190px;
+ height: auto;
+ margin-top: 10px;
+}
+.navbar nav ul {
+ list-style-type: none;
+ display: flex;
+ flex-direction: row;
+}
+.navbar nav a,
+.navbar nav a:visited {
+ margin-left: 15px;
+ margin-right: 15px;
+ padding-bottom: 5px;
+ text-decoration: none;
+ color: #ffffff;
+}
+.navbar nav a:hover {
+ border-bottom: 2px solid #FEDD01;
+}
+.navbar nav .current_menu_item a,
+.navbar nav .current_page_item a {
+ color: #FEDD01 !important;
+ border-bottom: 2px solid #FEDD01;
+}
+
+.mobile-nav {
+ visibility: hidden;
+ height: 0px;
+}
+
+#login {
+ color: #FEDD01;
+ padding-left: 20px;
+ padding-right: 20px;
+ padding-top: 10px;
+ padding-bottom: 10px;
+ margin-right: 15px;
+ border: 2px solid #FEDD01;
+ border-radius: 5px;
+ text-decoration: none;
+}
+
+#signup {
+ color: #0E1117;
+ padding-left: 20px;
+ padding-right: 20px;
+ padding-top: 10px;
+ padding-bottom: 10px;
+ margin-left: 15px;
+ background-color: #FEDD01;
+ border: 2px solid #FEDD01;
+ border-radius: 5px;
+ text-decoration: none;
+}
+
+.sub-menu {
+ visibility: hidden;
+ height: 0px;
+ width: 0px;
+}
+
+/*# sourceMappingURL=header-style.css.map */
diff --git a/css/header-style.css.map b/css/header-style.css.map
new file mode 100644
index 0000000..50deafc
--- /dev/null
+++ b/css/header-style.css.map
@@ -0,0 +1 @@
+{"version":3,"sourceRoot":"","sources":["header-style.scss"],"names":[],"mappings":"AAWA;EACI;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA,kBAfO;EAgBP,OAbG;;;AAgBP;EACI;EACA;EACA;EACA;EACA;EACA;EACA,qBACI;;;AAGR;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAKA;EACI;EACA;EACA;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;EACA,OArDL;;AAwDC;EACI;;AAMA;AAAA;EACI;EACA;;;AAOhB;EACI;EACA;;;AAGJ;EACI,OAvFY;EAwFZ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI,OA3FO;EA4FP;EACA;EACA;EACA;EACA;EACA,kBAzGY;EA0GZ;EACA;EACA;;;AAGJ;EACI;EACA;EACA","file":"header-style.css"}
\ No newline at end of file
diff --git a/css/header-style.scss b/css/header-style.scss
new file mode 100644
index 0000000..8aacf1f
--- /dev/null
+++ b/css/header-style.scss
@@ -0,0 +1,116 @@
+$primary-color: #FEDD01;
+$secondary-color: #3080EC;
+
+//Dark Theme
+$dark-300: #ADB0BB;
+$dark-400: #42464D;
+$dark-500: #282C34;
+$dark-600: #1C2025;
+$dark-700: #0E1117;
+$text: #ffffff;
+
+* {
+ margin: 0px;
+ padding: 0px;
+}
+
+header {
+ width: 100%;
+ height: 60px;
+ display: flex;
+ justify-content: center;
+ background-color: $dark-500;
+ color: $text;
+}
+
+#header-container{
+ max-width: 1200px;
+ width: 90%;
+ display: grid;
+ grid-template-columns: 1fr 2fr 1fr;
+ grid-template-rows: 1fr;
+ gap: 10px;
+ grid-template-areas:
+ ". . .";
+}
+
+.navbar {
+ width: 100%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+
+ #logo {
+ width: 190px;
+ height: auto;
+ margin-top: 10px;
+ }
+
+ nav {
+
+ ul {
+ list-style-type: none;
+ display: flex;
+ flex-direction: row;
+ }
+
+ a,
+ a:visited {
+ margin-left: 15px;
+ margin-right: 15px;
+ padding-bottom: 5px;
+ text-decoration: none;
+ color: $text;
+ }
+
+ a:hover {
+ border-bottom: 2px solid $primary-color;
+ }
+
+ .current_menu_item,
+ .current_page_item {
+
+ a {
+ color: $primary-color !important;
+ border-bottom: 2px solid $primary-color;
+ }
+ }
+
+ }
+}
+
+.mobile-nav{
+ visibility: hidden;
+ height: 0px;
+}
+
+#login {
+ color: $primary-color;
+ padding-left: 20px;
+ padding-right: 20px;
+ padding-top: 10px;
+ padding-bottom: 10px;
+ margin-right: 15px;
+ border: 2px solid $primary-color;
+ border-radius: 5px;
+ text-decoration: none;
+}
+
+#signup {
+ color: $dark-700;
+ padding-left: 20px;
+ padding-right: 20px;
+ padding-top: 10px;
+ padding-bottom: 10px;
+ margin-left: 15px;
+ background-color: $primary-color;
+ border: 2px solid $primary-color;
+ border-radius: 5px;
+ text-decoration: none;
+}
+
+.sub-menu{
+ visibility: hidden;
+ height: 0px;
+ width: 0px;
+}
\ No newline at end of file
diff --git a/css/index-style.css b/css/index-style.css
new file mode 100644
index 0000000..baa4ff1
--- /dev/null
+++ b/css/index-style.css
@@ -0,0 +1,112 @@
+/*
+Theme Name: CodeSpread
+Author: Aldo Guzman
+Version: 1.0
+*/
+.banner {
+ width: 100%;
+ min-height: 580px;
+ display: flex;
+ justify-content: center;
+ background-image: url(https://codespread-assets.s3.us-west-2.amazonaws.com/wordpress/banner.webp);
+ background-repeat: no-repeat;
+ background-position: center;
+ background-size: cover;
+}
+
+.video-section {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+}
+.video-section h2 {
+ font-size: 32px;
+ line-height: 42px;
+ text-align: center;
+ margin: 40px;
+}
+.video-section p {
+ font-size: 18px;
+ line-height: 22px;
+ margin: 40px;
+}
+.video-section #youtube-video {
+ margin: 40px;
+}
+
+#tech-screens {
+ width: 100%;
+ min-height: 510px;
+ background-image: url(https://codespread-assets.s3.us-west-2.amazonaws.com/wordpress/banner-screens-mobile.webp);
+ background-repeat: no-repeat;
+ background-position: center;
+ background-size: cover;
+}
+
+#column-black {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ background-color: #1C2025;
+}
+
+.how-works {
+ max-width: 1200px;
+ width: 100%;
+ min-height: 580px;
+ color: #ffffff;
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ grid-template-rows: 1fr;
+ gap: 20px 20px;
+ grid-template-areas: ". .";
+}
+
+#partners {
+ font-size: 32px;
+ line-height: 42px;
+ font-weight: 600;
+ text-align: center;
+ margin: 40px;
+}
+
+.slider {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+}
+
+.slider-track {
+ margin-bottom: 40px;
+ display: grid;
+ grid-template-columns: 1fr 1fr 1fr 1fr;
+ grid-template-rows: 1fr;
+ gap: 20px 20px;
+ grid-template-areas: ". . . .";
+}
+
+.partner-logo {
+ width: 230px;
+ height: 120px;
+}
+
+.sliderMobile {
+ visibility: hidden;
+ height: 0px;
+}
+
+.slider-mobile {
+ margin-left: 15%;
+ margin-right: 15%;
+}
+
+.bx-viewport,
+.bx-wrapper {
+ border: 0 !important; /* border */
+ -webkit-box-shadow: none !important; /* these two shadows */
+ box-shadow: none !important;
+}
+
+/*# sourceMappingURL=index-style.css.map */
diff --git a/css/index-style.css.map b/css/index-style.css.map
new file mode 100644
index 0000000..8acf404
--- /dev/null
+++ b/css/index-style.css.map
@@ -0,0 +1 @@
+{"version":3,"sourceRoot":"","sources":["index-style.scss"],"names":[],"mappings":"AAAA;AAAA;AAAA;AAAA;AAAA;AAqBA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAOJ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAKJ;EACI;;;AAMR;EACI;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACI;EACA;EACA;EACA,kBAjEO;;;AAoEX;EACI;EACA;EACA;EACA,OApEG;EAqEH;EACA;EACA;EACA;EACA,qBACI;;;AAKR;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA,qBACI;;;AAGR;EACI;EACA;;;AAKJ;EACI;EACA;;;AAGJ;EACI;EACA;;;AAIJ;AAAA;EAEI;EACA;EACA","file":"index-style.css"}
\ No newline at end of file
diff --git a/css/index-style.scss b/css/index-style.scss
new file mode 100644
index 0000000..ce7781a
--- /dev/null
+++ b/css/index-style.scss
@@ -0,0 +1,145 @@
+/*
+Theme Name: CodeSpread
+Author: Aldo Guzman
+Version: 1.0
+*/
+
+$primary-color: #FEDD01;
+$secondary-color: #3080EC;
+
+//Dark Theme
+$dark-300: #ADB0BB;
+$dark-400: #42464D;
+$dark-500: #282C34;
+$dark-600: #1C2025;
+$dark-700: #0E1117;
+
+//Light Theme
+$text: #ffffff;
+$light-600: #F4F6F8;
+
+// Banner Section
+.banner {
+ width: 100%;
+ min-height: 580px;
+ display: flex;
+ justify-content: center;
+ background-image: url(https://codespread-assets.s3.us-west-2.amazonaws.com/wordpress/banner.webp);
+ background-repeat: no-repeat;
+ background-position: center;
+ background-size: cover;
+}
+
+
+
+//Video Section
+
+.video-section {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+
+ h2 {
+ font-size: 32px;
+ line-height: 42px;
+ text-align: center;
+ margin: 40px;
+ }
+
+ p {
+ font-size: 18px;
+ line-height: 22px;
+ margin: 40px;
+ }
+
+
+
+ #youtube-video {
+ margin: 40px;
+ }
+}
+
+//How it Works Section
+
+#tech-screens {
+ width: 100%;
+ min-height: 510px;
+ background-image: url(https://codespread-assets.s3.us-west-2.amazonaws.com/wordpress/banner-screens-mobile.webp);
+ background-repeat: no-repeat;
+ background-position: center;
+ background-size: cover;
+
+}
+
+#column-black{
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ background-color: $dark-600;
+}
+
+.how-works {
+ max-width: 1200px;
+ width: 100%;
+ min-height: 580px;
+ color: $text;
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ grid-template-rows: 1fr;
+ gap: 20px 20px;
+ grid-template-areas:
+ ". .";
+}
+
+// Partners Section
+
+#partners {
+ font-size: 32px;
+ line-height: 42px;
+ font-weight: 600;
+ text-align: center;
+ margin: 40px;
+}
+
+.slider {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+}
+
+.slider-track {
+ margin-bottom: 40px;
+ display: grid;
+ grid-template-columns: 1fr 1fr 1fr 1fr;
+ grid-template-rows: 1fr;
+ gap: 20px 20px;
+ grid-template-areas:
+ ". . . .";
+}
+
+.partner-logo {
+ width: 230px;
+ height: 120px;
+}
+
+//Slider on Mobile
+
+.sliderMobile {
+ visibility: hidden;
+ height: 0px;
+}
+
+.slider-mobile {
+ margin-left: 15%;
+ margin-right: 15%;
+
+}
+
+.bx-viewport,
+.bx-wrapper{
+ border: 0!important; /* border */
+ -webkit-box-shadow: none!important; /* these two shadows */
+ box-shadow: none!important;
+}
\ No newline at end of file
diff --git a/css/mobile-style.css b/css/mobile-style.css
new file mode 100644
index 0000000..ed9ee60
--- /dev/null
+++ b/css/mobile-style.css
@@ -0,0 +1,352 @@
+ /*Header*/
+
+ @media (max-width: 1100px) {
+
+ .primary:hover,
+ .secondary:hover {
+ transform: translate(0px, 0px);
+ box-shadow: none;
+ }
+
+ /*Hidden Nav bar*/
+ .navbar {
+ display: none;
+ }
+
+ }
+
+ /*End of Header*/
+
+ /*Footer*/
+
+ @media (max-width: 600px) {
+
+ .container {
+ width: auto;
+ display: flex;
+ flex-direction: column;
+ }
+
+ .footer-column {
+ width: 100%;
+ }
+
+ .legals {
+ text-align: center;
+ }
+ }
+
+ /*End of Footer*/
+
+ /*------------------------- Front Page --------------------------------------------*/
+
+ @media (max-width: 900px) {
+
+ /*Main Banner*/
+
+ .main-column {
+ display: flex;
+ flex-direction: column-reverse;
+ }
+
+ /*Benefits*/
+ .benefits {
+ padding: 20px;
+ flex-direction: column;
+ align-items: center;
+ }
+
+ .benefits-single {
+ margin: 10px;
+ }
+
+ #youtube-video iframe {
+ width: 600px;
+ height: 340px;
+ }
+
+ .sliderMobile {
+ visibility: visible;
+ height: auto;
+ }
+
+ .slider-track {
+ display: none;
+ }
+
+ .mobile-hide {
+ display: none;
+ }
+
+ }
+
+ @media (max-width: 810px) {
+ #tech-screens {
+ display: none;
+ }
+
+ }
+
+ @media (max-width: 600px) {
+
+ /*Main Banner*/
+
+ .banner {
+ display: flex;
+ flex-direction: column-reverse;
+ }
+
+ .banner-column {
+ padding: 20px;
+ }
+
+ /*Video Section*/
+
+ .video-section p {
+ text-align: center;
+ }
+
+ #youtube-video iframe {
+ width: 300px;
+ height: 170px;
+ }
+
+ /*How It Works*/
+ .how-works {
+ display: flex;
+ flex-direction: column;
+ }
+
+ .banner-column {
+ padding: 20px;
+ }
+
+ #works-one {
+ flex-direction: column-reverse;
+ }
+
+ }
+
+ @media (max-width: 490px) {
+
+ /*Main Banner*/
+
+ .cta {
+ display: flex;
+ flex-direction: column;
+ }
+
+ }
+
+ /*------------------------- End of Front Page --------------------------------------------*/
+
+ /*------------------------- Clients & Developers Page --------------------------------------------*/
+
+ @media (max-width: 810px) {
+
+ .banner-page {
+ display: flex;
+ flex-direction: column-reverse;
+ }
+ }
+
+ @media (max-width: 600px) {
+ .why-join {
+ display: flex;
+ flex-direction: column;
+ }
+
+ .middle {
+ flex-direction: column-reverse;
+ }
+
+ #banner-text {
+ margin: 20px;
+ }
+ }
+
+ /*------------------------- End of Clients & Developers Page --------------------------------------------*/
+
+ /*------------------------- About Us Page --------------------------------------------*/
+
+ @media (max-width: 810px) {
+
+ #other-team img {
+ margin-right: 50px;
+ margin-left: 50px;
+ }
+
+ }
+
+ @media (max-width: 600px) {
+
+ #board {
+ gap: 50px 50px;
+ }
+
+ #board img {
+ margin-right: 0px;
+ margin-left: 0px;
+ }
+
+ #other-team img {
+ margin-right: 0px;
+ margin-left: 0px;
+ }
+
+ }
+
+ @media (max-width: 550px) {
+
+ .about-section {
+ padding: 20px;
+ }
+
+ #we-are {
+ text-align: center;
+ }
+
+ .paragraph {
+ margin: 10px;
+ }
+
+ .team {
+ padding: 20px;
+ }
+
+ .photo-team {
+ padding: 20px;
+ }
+
+ #board,
+ #other-team {
+ display: flex;
+ flex-direction: column;
+ }
+ }
+
+ /*------------------------- End of About Us Page --------------------------------------------*/
+
+ /*------------------------- Contact Page --------------------------------------------*/
+
+ @media (max-width: 1100px) {
+ #mail-pic {
+ display: none;
+ }
+ }
+
+ @media (max-width: 560px) {
+
+ .contact-form {
+ min-width: 450px;
+ }
+
+ }
+
+ @media (max-width: 460px) {
+
+ .contact-form {
+ min-width: 350px;
+ }
+
+ }
+
+ @media (max-width: 400px){
+
+ #banner-text{
+ max-width: 350px;
+ }
+
+ #contact-container{
+ border: 1px solid red;
+ }
+
+ .contact-form {
+ min-width: 300px;
+ }
+
+ }
+
+ /*------------------------- Mobile Menu --------------------------------------------*/
+
+ @media (max-width: 1100px) {
+ /*-- Mobile Menu --*/
+
+ header {
+ visibility: hidden;
+ height: 0px;
+ }
+
+ .mobile-nav {
+ visibility: visible;
+ height: 60px;
+ background-color: #282C34;
+ color: white;
+ display: grid;
+ grid-template-columns: 3fr 1fr;
+ grid-template-rows: 1fr;
+ gap: 10px 10px;
+ grid-template-areas:
+ ". .";
+ padding: 10px;
+ }
+
+ .mobile-column {
+ display: flex;
+ align-items: center;
+ }
+
+ .mobile-column i {
+ font-size: 20px;
+ }
+
+ #logo-mobile {
+ width: 190px;
+ height: auto;
+ margin-top: 10px;
+ margin-left: 10px;
+ }
+
+ .icon {
+ display: flex;
+ justify-content: right;
+ }
+
+ .closemenu {
+ display: none;
+ }
+
+ .closemenu,
+ .openmenu {
+ height: auto;
+ padding: 10px;
+ margin-right: 10px;
+ }
+
+ /*-- Submenu --*/
+ .sub-menu {
+ width: 100%;
+ height: 0px;
+ }
+
+ .mainmenu li {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border: 1px solid #0E1117;
+ background-color: #282C34;
+ height: 40px;
+ }
+
+ .mainmenu li a {
+ text-decoration: none;
+ color: white;
+ }
+
+ .mainmenu li:hover {
+ background-color: #42464D;
+ }
+
+ }
+
+ /*------------------------- End of Mobile Menu --------------------------------------------*/
\ No newline at end of file
diff --git a/css/page-style.css b/css/page-style.css
new file mode 100644
index 0000000..5e9e4db
--- /dev/null
+++ b/css/page-style.css
@@ -0,0 +1,24 @@
+* {
+ font-family: "Roboto", sans-serif;
+}
+
+.main {
+ padding: 50px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ color: #1C2025;
+}
+
+.container-box {
+ width: 70%;
+ font-size: 16px;
+ line-height: 24px;
+}
+.container-box h1 {
+ font-size: 32px;
+ line-height: 42px;
+ margin-bottom: 30px;
+}
+
+/*# sourceMappingURL=page-style.css.map */
diff --git a/css/page-style.css.map b/css/page-style.css.map
new file mode 100644
index 0000000..87ac604
--- /dev/null
+++ b/css/page-style.css.map
@@ -0,0 +1 @@
+{"version":3,"sourceRoot":"","sources":["page-style.scss"],"names":[],"mappings":"AAgBA;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA,OAlBO;;;AAqBX;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA","file":"page-style.css"}
\ No newline at end of file
diff --git a/css/page-style.scss b/css/page-style.scss
new file mode 100644
index 0000000..4c123e4
--- /dev/null
+++ b/css/page-style.scss
@@ -0,0 +1,40 @@
+$primary-color: #FEDD01;
+$secondary-color: #3080EC;
+
+//Dark Theme
+$dark-300: #ADB0BB;
+$dark-400: #42464D;
+$dark-500: #282C34;
+$dark-600: #1C2025;
+$dark-700: #0E1117;
+
+//Light Theme
+$text: #ffffff;
+$light-600: #F4F6F8;
+
+
+
+* {
+ font-family: 'Roboto', sans-serif;
+}
+
+.main {
+ padding: 50px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ color: $dark-600;
+}
+
+.container-box {
+ width: 70%;
+ font-size: 16px;
+ line-height: 24px;
+
+ h1 {
+ font-size: 32px;
+ line-height: 42px;
+ margin-bottom: 30px;
+ }
+
+}
\ No newline at end of file
diff --git a/footer.php b/footer.php
new file mode 100644
index 0000000..e99831b
--- /dev/null
+++ b/footer.php
@@ -0,0 +1,72 @@
+
+
+
+ CodeSpread
+
+
+
+
+
+
+
+
+
+
+
+ © CodeSpread 2022.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/front-page.php b/front-page.php
new file mode 100644
index 0000000..e4d65db
--- /dev/null
+++ b/front-page.php
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+ Freelance Programmer - Talented Developer For Hire | CodeSpread
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
The Perfect
+ Development Match is Possible
+
CodeSpread’s unique matching algorithm pairs buyers and their ideal developer: based on the buyer’s needs and the developer’s Github activity .
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Developer
+Monetize your Github activity, Generate new opportunities.
+
+
+
+
+
+
+
+
+
+Client
+Find the best developers based on Github contributions.
+
+
+
+
+
+
+
+
+
+Unique Match
+We are making remote development easy.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Made for Developers
+by Developers
+
+
+Helping developers and clients make the most of open source.
+
+
+VIDEO
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Make Your
+ Github Activities Count
+
+CodeSpread’s algorithm ranks and scores developers based on Github activity,
+ matches you with buyers looking for development work, and generates even more traction on your repos .
+
Apply as Developer
+
+
+
+
+
+
+
+
Hire the Best
+ Developers Fast
+
Based on millions of Github contributions,
+
+we find the perfect developer
+for your project, often one that works on the very code you might be using right now. Get all the actual relevant data .
+
Find Developers
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Our Partners
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/functions.php b/functions.php
new file mode 100644
index 0000000..5ab9d11
--- /dev/null
+++ b/functions.php
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ CodeSpread
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+