diff --git a/content/pages/homepage.html b/content/pages/homepage.html
index 114b59a..81ccd2c 100644
--- a/content/pages/homepage.html
+++ b/content/pages/homepage.html
@@ -11,9 +11,11 @@
Welcome to my website
The place where my knowledge lies, or at least most of it!
- Find Out More
+
+
+
diff --git a/theme/static/src/scss/functional.scss b/theme/static/src/scss/functional.scss
index 9767098..3126e25 100644
--- a/theme/static/src/scss/functional.scss
+++ b/theme/static/src/scss/functional.scss
@@ -6,3 +6,7 @@
background-image: url("../img/header.jpg");
background-position: center;
}
+
+.text-shadow {
+ text-shadow: 0px 5px 3px $brand-grey-dark;
+}
diff --git a/theme/static/src/scss/homepage.scss b/theme/static/src/scss/homepage.scss
index 0bbc1ab..15a9338 100644
--- a/theme/static/src/scss/homepage.scss
+++ b/theme/static/src/scss/homepage.scss
@@ -2,7 +2,22 @@ header {
background-image: url("../img/header.jpg");
min-height: 100%;
+ h1 {
+ font-size: $font-size-h1 * 1.5;
+ @extend .text-shadow;
+ }
+
+ .page-scroll {
+ position: absolute;
+ bottom: 10%;
+ color: $white;
+ & > i {
+ font-size: $font-size-h1;
+ }
+ }
+
.header-content-inner p {
+ @extend .text-shadow;
font-size: $font-size-h3 !important;
font-weight: 400 !important;
}
diff --git a/theme/static/src/scss/library-overrides.scss b/theme/static/src/scss/library-overrides.scss
index 377bc0c..a91db74 100644
--- a/theme/static/src/scss/library-overrides.scss
+++ b/theme/static/src/scss/library-overrides.scss
@@ -41,3 +41,21 @@ $btn-srobo-border: darken($btn-srobo-bg, 5%);
section {
padding: 75px 0;
}
+
+hr {
+ max-width: 100px;
+}
+
+@keyframes pulse {
+ from {
+ transform: scale3d(1, 1, 1);
+ }
+
+ 50% {
+ transform: scale3d(1.1, 1.1, 1.1);
+ }
+
+ to {
+ transform: scale3d(1, 1, 1);
+ }
+}