1import styled from 'styled-components';
2
3export const BodyCopy = styled.p`
4 font-size: 1.4rem;
5 line-height: 2.2rem;
6 width: 100%;
7 text-align: center;
8 ${p => p.noMargin && 'margin: 0'};
9 @media (min-width: 768px) {
10 font-size: 1.5rem;
11 line-height: 2.4rem;
12 text-align: left;
13 }
14`;