import { darkLine } from '@/styles/colors';
import { BELOW_W_768, paddedMainContentWidth } from '@/styles/dimensions';
import { keyframes } from '@emotion/react';
import styled from '@emotion/styled';

const fadeIn = keyframes`
  0% { opacity: 0; }
  100% { opacity: 1; }
`;

export const PageWrapper = styled.div`
  font-size: 1.4rem;
  overflow-x: hidden;
`;

export const Wrapper = styled.div`
  font-family: Montreal, 'Helvetica Neue', Helvetica, sans-serif;
  background-color: #fff;
`;

export const BetaInfoWrapper = styled.div`
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  margin-top: 20px;
  @media screen and (min-width: 1200px) {
    margin-top: 0;
  }
`;

export const SideLineWrapper = styled.div`
  pointer-events: none;
  content: '';
  display: block;
  position: fixed;
  bottom: 0;
  top: -100svh;
  z-index: 11;
  left: calc(50% - ${paddedMainContentWidth} / 2);
  width: ${paddedMainContentWidth};
  border-left: 1px solid ${darkLine};
  border-right: 1px solid ${darkLine};
  @media screen and (${BELOW_W_768}) {
    display: none;
  }
`;

export default Wrapper;
