webapp
Форк от omaltsev/webapp
1* {2box-sizing: border-box;3margin: 0;4padding: 0;5font-family: 'PT Sans', sans-serif;6}
7
8.home,
9.services,
10.products,
11.sign-up {12display: flex;13height: 90vh;14align-items: center;15justify-content: center;16font-size: 3rem;17}
18
19
20
21
22.services {23background-image: url('/images/img-2.jpg');24background-position: center;25background-size: cover;26background-repeat: no-repeat;27color: #fff;28font-size: 100px;29}
30
31.products {32background-image: url('/images/img-1.jpg');33background-position: center;34background-size: fill;35background-repeat: no-repeat;36color: #fff;37font-size: 100px;38}
39
40.sign-up {41background-image: url('/images/img-8.jpg');42background-position: center;43background-size: cover;44background-repeat: no-repeat;45color: #fff;46font-size: 100px;47}
48