iframe {
  display: block; /* iframe is display: inline by default, which doesn't fit how we use them (eg: for youtube videos) */
}

.youtube {
  width: 100%;
  height: auto;
  aspect-ratio: calc(16 / 9);
}