section.apresentacao {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin: 120px 0 120px;
}

section.apresentacao h3 {
  font-size: 18px;
  color: var(--highlight);

  margin-bottom: 10px;
}

section.apresentacao h2 {
  font-size: 32px;

  margin-bottom: 40px;
}

section.apresentacao div.video-container {
  height: 648px;
  width: 80%;

  margin-bottom: 48px;
}

@media (max-width: 768px) {
  section.apresentacao {
    margin: 40px 0 32px;
  }

  section.apresentacao h2 {
    font-size: 14px;
  }

  section.apresentacao div.video-container {
    height: 480px;
    width: 100%;

    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  section.apresentacao div.video-container {
    height: 240px;
  }
}