computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
436 B
30 lines
436 B
import styled from 'styled-components'; |
|
|
|
export const HeroSectionWrap = styled.div` |
|
text-align: center; |
|
padding: 70px 20px; |
|
margin: 0 auto; |
|
|
|
.container { |
|
max-width: 800px; |
|
} |
|
|
|
h1 { |
|
font-size: 70px; |
|
font-weight: 700; |
|
margin-bottom: 25px; |
|
} |
|
|
|
p { |
|
font-size: 20px; |
|
color: #333; |
|
font-weight: 400; |
|
margin-bottom: 0; |
|
line-height: 35px; |
|
} |
|
|
|
a { |
|
font-weight: 700; |
|
color: #000; |
|
} |
|
`; |