.videoPoster {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #08101d, #132b3a 52%, #0b2f24);
}

.videoPoster p {
  color: #dce8f7;
  font-weight: 800;
  margin: 12px 0 0;
}

.playMark {
  width: 68px;
  height: 48px;
  border-radius: 8px;
  background: var(--red);
  position: relative;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .32);
}

.playMark::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 13px;
  border-left: 18px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}
