diff --git a/src/app/promoScreen/PromoScreen.js b/src/app/promoScreen/PromoScreen.js
index 777f3c7..a19e4a2 100644
--- a/src/app/promoScreen/PromoScreen.js
+++ b/src/app/promoScreen/PromoScreen.js
@@ -2,36 +2,39 @@ import React from 'react'
import FeatureCol from '../../common/FeatureCol'
import colobus from '../../assets/colobus.png'
import Login from '../Auth/Login'
+import Styles from './promoScreen.module.css'
const PromoScreen = () => (
diff --git a/src/app/promoScreen/promoScreen.module.css b/src/app/promoScreen/promoScreen.module.css
new file mode 100644
index 0000000..16a87e9
--- /dev/null
+++ b/src/app/promoScreen/promoScreen.module.css
@@ -0,0 +1,25 @@
+.gradientBall {
+ position: absolute;
+ z-index: -2;
+ width: 3000px;
+ height: 1500px;
+ top: -40%;
+ left: 15%;
+ transform: translateX(-4%);
+ background: linear-gradient(rgba(255, 222, 222, 0.5), #DDFFE7);
+ border-radius: 40%;
+ overflow: hidden;
+}
+
+.circle {
+ position: absolute;
+ z-index: -2;
+ width: 500px;
+ height: 500px;
+ top: 49%;
+ left: 0%;
+ transform: translateX(-4%);
+ background-color: #DDFFE7;
+ border-radius: 50%;
+ overflow: hidden;
+}
\ No newline at end of file
diff --git a/src/common/FeatureCol.js b/src/common/FeatureCol.js
index 8d93753..86f32ce 100644
--- a/src/common/FeatureCol.js
+++ b/src/common/FeatureCol.js
@@ -4,7 +4,7 @@ const FeatureCol = ({ src, title, description }) => (
-

+
{title}
{description}