/* Style the video: 100% width and height to cover the entire window */

#myVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

/* Add some content at the bottom of the video/page */

.content {
  position: absolute;
  background: rgba(15,15,14,0.64);
  color: #C9FBF8;
  width: 100%;
  height: 100%;
  padding: 20px;
  padding-top: 35vh;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  font-size: 18px;
}

.headline {
  width: 50vw;
  margin-left: auto;
  margin-right: auto;
}

/* Style the button used to pause/play the video */

#myBtn {
  width: 100px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #5C5956;
  color: #FFFFF5;
  cursor: pointer;
  border-radius: var(--bs-border-radius);
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}

