diff --git a/site/docs/index.md b/site/docs/index.md
index fc1c448bf1..65257546ea 100644
--- a/site/docs/index.md
+++ b/site/docs/index.md
@@ -9,7 +9,12 @@ use [FHIR®](https://hl7.org/fhir) and clinical terminology within health
data analytics. It is built on [Apache Spark](https://spark.apache.org), and
includes both language libraries and a server implementation.
-
+
## What can it do?
diff --git a/site/src/css/custom.css b/site/src/css/custom.css
index ae57b0aa76..94e37174cd 100644
--- a/site/src/css/custom.css
+++ b/site/src/css/custom.css
@@ -98,3 +98,17 @@ code {
table {
font-size: 90%;
}
+
+.yt-embed {
+ /* Default styling for screens wider than 560px */
+ width: 560px;
+ height: 315px;
+}
+
+@media screen and (max-width: 560px) {
+ .yt-embed {
+ /* Adjustments for screens 560px wide or less */
+ width: 92vw;
+ height: calc(92vw * 0.5625);
+ }
+}