import { styled } from "@mui/styles";

export const PlayerIconStyle = {
  position: "absolute",
  display: "flex",
  top: "50%",
  left: "50%",
  transform: " translate(-50%, -50%)",
  fontSize: "150px",
  color: "#FFFFFF",
  cursor: "pointer",
};

export const VideoPlayerContainer = styled("div")({
  position: "relative",
});
