/* videoA */
#videoA {
  display: flex;
  justify-content: center;
  background: white;
  padding-bottom: 10px;
}

#videoAwrapper {
  width: 70%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
}

#videoAwrapper iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  #videoAwrapper {
    width: 100%;
    max-width: none;
  }
}