@import url("https://fonts.googleapis.com/css?family=Aboreto");

h2.welcome-message {
  font-family: "Aboreto", serif;
  font-size: 2em;
  margin-bottom: 1rem;
}
li.item-101 {
  display: block !important;
}

/* Facebook Video Player Styles */
.fb-video-lazy {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.fb-video-lazy img {
  width: 100%;
  height: auto;
  display: block;
}

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

.fb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.7);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fb-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.fb-play:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

.fb-play:hover::before {
  border-left-color: #000;
}
