import styled from 'styled-components' const Container = styled.div` height: 100%; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; background-color: ${({ theme }) => theme.colors.background}; color: ${({ theme }) => theme.colors.color}; ` export default Container