/* 寫法一 */
.container {
  width: 84%;
  aspect-ratio: 560 / 315;
  background-color: #5f9ea0;
}

.container iframe {
  width: 100%;
  height: 100%;
  vertical-align: top;
}

/* 寫法二 */
.iframe-box {
  width: 84%;
  height: auto;
  aspect-ratio: 560 / 315;
  vertical-align: top;
}
