.background-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 300px;
}

.background-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  background-size: cover;
  background-position: 50% 50%;
}

.background-video--control {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 1;
}

.background-video--control:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.background-video--control img {
  width: 1.5rem;
  height: 1.5rem;
}

.background-video--control span {
  display: flex;
  align-items: center;
  justify-content: center;
}

