_content: fix colors for links in BackgroundQuotes

The colors for the link and the background color for the background
quotes are too similar, so the quotes do not appear. This change adds
style to the links in the background quotes so that they inherit the
colors.

Updates golang/go#52312

Change-Id: Ib7fa0b23ff194333f50c1346747ea06d25e09254
Reviewed-on: https://go-review.googlesource.com/c/website/+/400894
Run-TryBot: Suzy Mueller <suzmue@golang.org>
Reviewed-by: Nooras Saba‎ <saba@golang.org>
Reviewed-by: Jamal Carvalho <jamal@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
diff --git a/_content/css/styles.css b/_content/css/styles.css
index 4e5bfee..e6856c2 100644
--- a/_content/css/styles.css
+++ b/_content/css/styles.css
@@ -2888,6 +2888,9 @@
   margin-left: auto;
   margin-top: 1rem;
 }
+a.BackgroundQuote-link {
+  color: inherit;
+}
 .PullQuote-author {
   font-size: 0.875rem;
 }
diff --git a/_content/solutions/default.tmpl b/_content/solutions/default.tmpl
index b1bfb5a..3ef58db 100644
--- a/_content/solutions/default.tmpl
+++ b/_content/solutions/default.tmpl
@@ -86,7 +86,7 @@
 {{- with (yaml .info)}}
 <div class="BackgroundQuote">
 {{- with .link}}
-<a href="{{.}}" target="_blank" rel="noopener">
+<a href="{{.}}" class="BackgroundQuote-link" target="_blank" rel="noopener">
 {{- end}}
     <p class="BackgroundQuote-body">
       “{{markdown .quote}}”