/* Video section block */
#video {
  text-align: center;
}

#video > p {
  color: black;
  font-family: "Roboto";
  font-size: 1.5rem;
}

/* Video section div that contains (fake video) */
#video > div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video section video(image) itself */
#video > div > img:first-child {
  width: 65%;
  aspect-ratio: 2/1;
}

/* Play button overlay'ed on the video */
#video > div > img:last-child {
  width: 150px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
