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