.media-container {
  position: relative;
  width: 100%;
}

.background-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px;
  background-color: transparent;
  border-radius: 40px;
  border: 5px solid #FFF;
  z-index: 2;
  width: 80%;
}

.video-overlay {
  width: 100%;
  height: auto;
  display: block;
}

.content-wrapper{
  max-width: 100%;
}

@media screen and (max-width: 1000px) {
  .video-wrapper {
      padding: 20px;
  }
} 