diff --git a/index.html b/index.html index 76254c13..a49e74c2 100644 --- a/index.html +++ b/index.html @@ -20,7 +20,7 @@ -
+
-
+
+ -
+ -
-
+
+
You've helped us give 72 bikes to refugees and asylum seekers so far. Thank you!
+ header-bike

Bikes for Refugees

Providing donated bikes and accessories to refugees and asylum @@ -72,7 +77,7 @@

Bikes for Refugees

Learn more

-
+

Why do refugees need bikes?

Many refugees are placed in housing in areas where there are @@ -85,7 +90,7 @@

Why do refugees need bikes?

Learn more

-
+

How can I help?

@@ -103,16 +108,16 @@

How can I help?

-
+ - -
+ + - + diff --git a/styles/style.css b/styles/style.css index 4d1c088e..1017dafb 100644 --- a/styles/style.css +++ b/styles/style.css @@ -95,7 +95,22 @@ p { /* Buttons */ - /* INSERT BUTTON STYLES HERE */ + button { + background-color: var(--orange-dark); + color: var(--white); + border: none; + padding: 0.5rem 1rem; + border-radius: 4px; + cursor: pointer; + font-weight: 600; + text-transform: uppercase; + } + + button:hover, + button:focus { + background-color: var(--orange-light); + color: var(--grey-dark); + } /* Content */ @@ -118,20 +133,34 @@ p { } /* hero */ - .hero { background-image: url("header-bike.jpg"); background-color: var(--grey-light); } +.hero { + position: relative; + text-align: center; + color: white; +} .hero h1 { - margin-bottom: 1rem; - font-size: 2.5rem; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + font-size: 28px; + font-weight: bold; } + + .hero p { - font-size: 1.2rem; - margin-bottom: 2rem; + position: absolute; + top: 75%; + left: 50%; + transform: translate(-50%, -50%); + font-size: 20px; + font-weight: bold; }