/* Floating video*/
#floating-video {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  height: 180px;
  background: black;
  border: 2px solid #ccc;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}
#floating-video.floating-hidden {
  display: none;
}
#floating-video button {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.video-thumbnail {
  width: 100%;
  position: relative;
  cursor: pointer;
}
.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: white;
  text-shadow: 0 0 10px black;
}