diff --git a/source/images/decidim-logo.svg b/source/images/decidim-logo.svg
index 8e2efcf9..18585ab6 100644
--- a/source/images/decidim-logo.svg
+++ b/source/images/decidim-logo.svg
@@ -2,7 +2,7 @@
diff --git a/source/images/features/landing-collaboration.svg b/source/images/features/landing-collaboration.svg
index d789575d..2a9f7178 100644
--- a/source/images/features/landing-collaboration.svg
+++ b/source/images/features/landing-collaboration.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
diff --git a/source/images/features/landing-community.svg b/source/images/features/landing-community.svg
index ace1fa87..ee0290cf 100644
--- a/source/images/features/landing-community.svg
+++ b/source/images/features/landing-community.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
diff --git a/source/images/features/landing-modular.svg b/source/images/features/landing-modular.svg
index dd5b7bc9..bcf79fdd 100644
--- a/source/images/features/landing-modular.svg
+++ b/source/images/features/landing-modular.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
diff --git a/source/images/features/landing-open.svg b/source/images/features/landing-open.svg
index d4a03be4..fe83cc80 100644
--- a/source/images/features/landing-open.svg
+++ b/source/images/features/landing-open.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
diff --git a/source/images/features/landing-security.svg b/source/images/features/landing-security.svg
index 8afd0ef4..ca0510cb 100644
--- a/source/images/features/landing-security.svg
+++ b/source/images/features/landing-security.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
diff --git a/source/images/video-cover.jpg b/source/images/video-cover.jpg
index 1bf861d7..00310098 100644
Binary files a/source/images/video-cover.jpg and b/source/images/video-cover.jpg differ
diff --git a/source/stylesheets/_variables.scss b/source/stylesheets/_variables.scss
index f1456a30..9946fc43 100644
--- a/source/stylesheets/_variables.scss
+++ b/source/stylesheets/_variables.scss
@@ -1,6 +1,6 @@
//Colors
-$primary: #FF3333;
-$primary-alt: #e52d2e;
+$primary: #008080; /* Teal: https://en.wikipedia.org/wiki/Teal */
+$primary-alt: #353839; /* Onyx: https://en.wikipedia.org/wiki/Shades_of_black#Onyx */
$primaryLight: #FF9C9C;
$secondary: #9fc7bc;
$body-color: #231f20;
diff --git a/source/stylesheets/base/_fontface.scss b/source/stylesheets/base/_fontface.scss
index 46d8a7e0..57835905 100644
--- a/source/stylesheets/base/_fontface.scss
+++ b/source/stylesheets/base/_fontface.scss
@@ -1,3 +1,5 @@
+ @import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=cyrillic,cyrillic-ext,latin-ext,vietnamese');
+
@font-face {
font-family: 'Barlow';
src:
diff --git a/source/stylesheets/base/_general.scss b/source/stylesheets/base/_general.scss
index 43f45c5c..d74f32d2 100644
--- a/source/stylesheets/base/_general.scss
+++ b/source/stylesheets/base/_general.scss
@@ -1,6 +1,31 @@
-*{
- box-sizing: border-box;
+*, *:hover, *:active, *:focus {
+ outline: none !important;
}
+
+*, *:before, *:after {
+ box-sizing: border-box !important;
+}
+
+::-moz-selection {
+ background: #008080;
+ color: #fff;
+}
+
+::selection {
+ background: #008080;
+ color: #fff;
+}
+
+a::-moz-selection {
+ background: #008080;
+ color: #fff;
+}
+
+a::selection {
+ background: #008080;
+ color: #fff;
+}
+
img{
max-width: 100%;
}
diff --git a/source/stylesheets/base/_typography.scss b/source/stylesheets/base/_typography.scss
index 7d1357d2..e395b1d1 100644
--- a/source/stylesheets/base/_typography.scss
+++ b/source/stylesheets/base/_typography.scss
@@ -1,5 +1,11 @@
body{
- font-family: "Barlow", sans-serif;
+ font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
+ text-rendering: auto !important;
+ -moz-font-smoothing: antialiased !important;
+ -webkit-font-smoothing: antialiased !important;
+ -moz-osx-font-smoothing: grayscale !important;
+ font-smoothing: antialiased !important;
+ font-smooth: always !important;
color: $body-color;
font-size: $body-fontsize;
font-weight: 300;