diff --git a/css/index.css b/css/index.css
index e764f2b01f..85e87be718 100644
--- a/css/index.css
+++ b/css/index.css
@@ -1 +1,357 @@
-/* LESS needs to be processed */
\ No newline at end of file
+/* http://meyerweb.com/eric/tools/css/reset/
+ v2.0 | 20110126
+ License: none (public domain)
+*/
+html,
+body,
+div,
+span,
+applet,
+object,
+iframe,
+h1,
+h2,
+h3,
+h4,
+h5,
+h6,
+p,
+blockquote,
+pre,
+a,
+abbr,
+acronym,
+address,
+big,
+cite,
+code,
+del,
+dfn,
+em,
+img,
+ins,
+kbd,
+q,
+s,
+samp,
+small,
+strike,
+strong,
+sub,
+sup,
+tt,
+var,
+b,
+u,
+i,
+center,
+dl,
+dt,
+dd,
+ol,
+ul,
+li,
+fieldset,
+form,
+label,
+legend,
+table,
+caption,
+tbody,
+tfoot,
+thead,
+tr,
+th,
+td,
+article,
+aside,
+canvas,
+details,
+embed,
+figure,
+figcaption,
+footer,
+header,
+hgroup,
+menu,
+nav,
+output,
+ruby,
+section,
+summary,
+time,
+mark,
+audio,
+video {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-size: 100%;
+ font: inherit;
+ vertical-align: baseline;
+}
+/* HTML5 display-role reset for older browsers */
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+menu,
+nav,
+section {
+ display: block;
+}
+body {
+ line-height: 1;
+}
+ol,
+ul {
+ list-style: none;
+}
+blockquote,
+q {
+ quotes: none;
+}
+blockquote:before,
+blockquote:after,
+q:before,
+q:after {
+ content: '';
+ content: none;
+}
+table {
+ border-collapse: collapse;
+ border-spacing: 0;
+}
+* {
+ box-sizing: border-box;
+}
+html {
+ font-size: 62.5%;
+}
+html,
+body {
+ font-family: 'Roboto', sans-serif;
+}
+h1,
+h2,
+h3,
+h4,
+h5 {
+ font-family: 'Indie Flower', cursive;
+}
+h1 {
+ font-size: 4rem;
+}
+h2 {
+ font-size: 3.2rem;
+ padding-bottom: 10px;
+}
+h4 {
+ font-size: 2.5rem;
+ padding-bottom: 10px;
+}
+p {
+ line-height: 1.5;
+ font-size: 1.6rem;
+ padding-bottom: 10px;
+}
+img {
+ max-width: 100%;
+ height: auto;
+}
+@media (max-width: 500px) {
+ img {
+ width: 96%;
+ }
+}
+.container {
+ max-width: 800px;
+ width: 100%;
+ margin: 0 auto;
+}
+@media (max-width: 500px) {
+ .container {
+ max-width: 500px;
+ width: 100%;
+ margin: 0 auto;
+ }
+}
+.navContainer {
+ border-bottom: 2px dashed #C0C0C0;
+ display: flex;
+ justify-content: center;
+}
+.navContainer .navTop {
+ width: 800px;
+ display: flex;
+ justify-content: space-between;
+ align-items: baseline;
+ margin: 25px 0px 0px 0px;
+ padding-bottom: 25px;
+}
+@media (max-width: 500px) {
+ .navContainer .navTop {
+ flex-direction: column;
+ align-items: center;
+ margin: 3% 0 0 0;
+ padding-bottom: 2%;
+ }
+}
+.navContainer .navTop h1 {
+ width: fit-content;
+}
+.navContainer .navTop nav {
+ width: 50%;
+ display: flex;
+ justify-content: space-around;
+}
+@media (max-width: 500px) {
+ .navContainer .navTop nav {
+ width: 100%;
+ display: flex;
+ justify-content: space-around;
+ padding-top: 3%;
+ }
+}
+.navContainer .navTop nav a {
+ color: #212529;
+ font-size: 17.5px;
+ text-decoration: none;
+}
+.footer {
+ width: 100%;
+ border-top: 2px dashed silver;
+ background: #FFEBCD;
+}
+.footer p {
+ text-align: center;
+ color: #212529;
+ font-size: 1.6rem;
+ padding: 20px;
+}
+.home .headerInfo {
+ border-bottom: 2px dashed #C0C0C0;
+ padding-bottom: 10px;
+ display: flex;
+ flex-direction: column;
+}
+.home .headerInfo img {
+ margin-bottom: 10px;
+}
+.home .headerInfo h1 {
+ margin: 10px 0px;
+}
+@media (max-width: 500px) {
+ .home {
+ align-items: center;
+ margin: 0 auto;
+ }
+}
+.content-section {
+ margin: 30px 0;
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: space-between;
+ align-items: center;
+}
+.content-section .text-content {
+ width: 48%;
+ padding-right: 1%;
+}
+.content-section .img-content {
+ width: 48%;
+ padding-left: 1%;
+}
+.content-section .img-content img {
+ border-radius: 10px;
+}
+@media (max-width: 500px) {
+ .content-section {
+ flex-direction: column;
+ justify-content: flex-start;
+ align-items: center;
+ width: 100%;
+ }
+ .content-section .text-content {
+ padding-right: 1%;
+ width: 96%;
+ }
+ .content-section .img-content {
+ width: 100%;
+ padding-left: 0%;
+ }
+ .content-section .img-content img {
+ color: red;
+ }
+}
+.inverse-content {
+ padding-bottom: 30px;
+ border-bottom: 2px dashed #C0C0C0;
+}
+@media (max-width: 500px) {
+ .inverse-content {
+ flex-direction: column-reverse;
+ }
+}
+.inverse-content .text-content {
+ padding-left: 1%;
+ padding-right: 0;
+}
+.inverse-content .img-content {
+ padding-right: 1%;
+ padding-left: 0;
+}
+.content-destination {
+ width: 75%;
+ margin: 0 auto 30px;
+}
+.content-destination img {
+ border-radius: 10px;
+}
+@media (max-width: 500px) {
+ .content-destination {
+ width: 100%;
+ margin: 0 auto 30px auto;
+ }
+ .content-destination img {
+ border-radius: 10px;
+ }
+}
+.content-pick {
+ padding-top: 30px;
+ border-top: 2px dashed #C0C0C0;
+ display: flex;
+ justify-content: space-between;
+}
+.content-pick .destination {
+ width: 30%;
+ margin-bottom: 30px;
+}
+.content-pick .destination .btn {
+ width: 80%;
+ color: white;
+ border-radius: 15px;
+ font-size: 20px;
+ background-color: #17A2B8;
+ text-align: center;
+ padding: 12px 20px;
+}
+@media (max-width: 500px) {
+ .content-pick {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ }
+ .content-pick .destination {
+ width: 75%;
+ display: flex;
+ flex-direction: column;
+ }
+ .content-pick .destination .btn {
+ width: auto;
+ }
+}
diff --git a/index.html b/index.html
index bb8663b768..a3b7d16be7 100644
--- a/index.html
+++ b/index.html
@@ -1,74 +1,135 @@
-
+
-
-
+
+
- Fun Bus Travel Agency - Solution
+ Fun Bus Travel Agency - Solution
-
-
+
+
-
-
+
+
-
+
-
-
-
-
-
-
-
Let's Go!
-
Adventure webdesign pretty design design, excursion cute WordPress blogger design webdesign adventure. Pretty simple traveling fun WordPress wanderlust darn simple organized.
-
Expedition colorful design simple excursion blogger blogger design WordPress design, design organized website theme.
-
-
-

-
-
-
-
-

-
-
-
Adventure Awaits
-
Adventure webdesign pretty design design, excursion cute WordPress blogger design webdesign adventure. Pretty simple traveling fun WordPress wanderlust darn simple organized.
-
Expedition colorful design simple excursion blogger blogger design WordPress design, design organized website theme.
-
-
-
-
- Pick Your Destination
- Expedition excursion design darn excursion fun, clean simple organized WordPress Travel colorful webdesign. Traveler blogger website design expedition clean excursion traveling.
-
-
-
+
-
-
Fun In The Sun
-
Expedition excursion design excursion fun, clean simple organized WordPress Travel colorful webdesign. Traveler blogger website design expedition clean excursion traveling.
-
Sign Me Up!
-
-
-
Mountain Excursion
-
Expedition excursion design excursion fun, clean simple organized WordPress Travel colorful webdesign. Traveler blogger website design expedition clean excursion traveling.
-
Sign Me Up!
-
-
-
Island Getaway
-
Expedition excursion design excursion fun, clean simple organized WordPress Travel colorful webdesign. Traveler blogger website design expedition clean excursion traveling.
-
Sign Me Up!
-
-
-
+
+
-
+
+
-
-
\ No newline at end of file
+
+

+
+
+
+ Welcome to the Fun Bus!
+
+ Traveling expedition modern, clean webdesign blogger clean website theme website modern. Design pretty design, traveloggewr adventure Wordpress wanderlust theme blogger website expedition theme travelblogger Adventer fun travler pretty design website expedition.
+
+
+
+
+
+
+
+
+
+
Let's Go!
+
+ Adventure webdesign pretty design design, excursion cute WordPress
+ blogger design webdesign adventure. Pretty simple traveling fun
+ WordPress wanderlust darn simple organized.
+
+
+ Expedition colorful design simple excursion blogger blogger design
+ WordPress design, design organized website theme.
+
+
+
+

+
+
+
+
+

+
+
+
Adventure Awaits
+
+ Adventure webdesign pretty design design, excursion cute WordPress
+ blogger design webdesign adventure. Pretty simple traveling fun
+ WordPress wanderlust darn simple organized.
+
+
+ Expedition colorful design simple excursion blogger blogger design
+ WordPress design, design organized website theme.
+
+
+
+
+ Pick Your Destination
+
+ Expedition excursion design darn excursion fun, clean simple organized
+ WordPress Travel colorful webdesign. Traveler blogger website design
+ expedition clean excursion traveling.
+
+
+
+
+
+
Fun In The Sun
+
+ Expedition excursion design excursion fun, clean simple organized
+ WordPress Travel colorful webdesign. Traveler blogger website design
+ expedition clean excursion traveling.
+
+
Sign Me Up!
+
+
+
Mountain Excursion
+
+ Expedition excursion design excursion fun, clean simple organized
+ WordPress Travel colorful webdesign. Traveler blogger website design
+ expedition clean excursion traveling.
+
+
Sign Me Up!
+
+
+
Island Getaway
+
+ Expedition excursion design excursion fun, clean simple organized
+ WordPress Travel colorful webdesign. Traveler blogger website design
+ expedition clean excursion traveling.
+
+
Sign Me Up!
+
+
+
+
+
+
+
+