p {
  text-indent: 30pt;
  font-size: larger;
}

a {
  font-size: large;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.video-thumbnail {
  position: relative;
  display: inline-block;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 57%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent white;
  opacity: 0.9;
  border-radius: 35%;
}

.play-icon-background {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  height: 40px;
  width: 40px;
  border-style: solid;
  border-radius: 50%;
  background-color: black;
  border-color: black;
  opacity: 0.8;
}

.video-thumbnail:hover .play-icon {
  opacity: 0.75;
}

.video-thumbnail:hover .play-icon-background {
  opacity: 0.4;
}