@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
/* Overwrite Gutenberg Variables */
:root {
  --wp--style--global--content-size: 1200px;
}

/* Breakpoints */
/* Typography */
/* Color Palette */
/* Layout */
.custom-video-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
.custom-video-container video.custom-video {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.custom-video-container .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  cursor: pointer;
}
.custom-video-container .play-button {
  transform: translate(-50%, -50%); /* Center the button */
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  cursor: pointer;
  transition: opacity 0.3s ease;
  width: 60px;
  height: 60px;
  border: 5px solid #fff;
  border-radius: 50%; /* This makes it a circle */
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .custom-video-container .play-button {
    width: 10rem;
    height: 10rem;
  }
}
.custom-video-container .play-button:hover {
  transform: translate(-50%, -50%) scale(1.1); /* Maintain centering and slightly increase size on hover */
}
.custom-video-container .play-button .play-icon {
  width: 0;
  height: 0;
  border-left: 20px solid #fff; /* Adjust the color as needed */
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
@media only screen and (min-width: 1024px) {
  .custom-video-container .play-button .play-icon {
    border-left: 60px solid #fff; /* Adjust the color as needed */
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
  }
}