body {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  color: #333;
}

.container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  width: 80%;
  margin: 20px auto;
}

.video-wrapper {
  flex: 1;
  max-width: 600px;
  margin-right: 20px;
}

.video-wrapper iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.text-content {
  flex: 2;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.text-content h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.text-content p {
  line-height: 1.6;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    width: 95%;
  }

  .video-wrapper {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .text-content {
    padding: 10px;
  }

  .text-content h2 {
    font-size: 1.5em;
  }
}
