import styled from "styled-components";

const Overlay = styled.div`
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(74, 74, 74, 0.56);
`;

export default Overlay;
