27 lines
479 B
JavaScript
27 lines
479 B
JavaScript
import styled from 'styled-components';
|
|
|
|
export const SummaryContainer = styled.div``;
|
|
|
|
export const Header = styled.div`
|
|
text-align: center;
|
|
padding: 55px 0 45px;
|
|
`;
|
|
|
|
export const Summary = styled.div`
|
|
text-align: center;
|
|
padding: 50px 0;
|
|
`;
|
|
|
|
export const Title = styled.h1`
|
|
font-weight: 700;
|
|
margin-bottom: 12px;
|
|
font-size: 42px;
|
|
`;
|
|
export const Description = styled.p`
|
|
font-size: 19px;
|
|
margin-bottom: 0;
|
|
`;
|
|
export const Image = styled.img`
|
|
width: 100%;
|
|
`;
|