body {
  margin: 0;
  padding: 0;
  color: white;
  overflow-x: hidden;
  font-family: 'Tajawal', sans-serif;
}

.video-container iframe {
  position: fixed;
  right: 0px;
  bottom: 0;
  min-width: 100vw;
  min-height: 100vh;
  height: 100vh;
}

@media only screen and (min-width:768px) {
  .video-container iframe {
    height: auto;
  }
}

.video-container {
  z-index: 1;
}

.text-content {
  position: absolute;
  z-index: 2;
  bottom: 15px;
  padding: 10px;
  text-align: justify;
}

@media only screen and (min-width:768px) {
  .text-content {
    top: 30px;
    right: 30px;
    width: 30%;
    max-height: auto;
    overflow-y: visible;
  }
}

.text-content p {
  font-size: 11px;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.text-content:hover p {
  opacity: 1;
}

@media only screen and (min-width:768px) {
  .video-container iframe {
    width: 100vw;
    height: auto;
    right: 0;
  }

  .text-content {
    top: 30px;
    right: 30px;
    width: 30%;


  }

  .text-content p {
    font-size: 15px;
  }
}