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.services {20background-image: url('/images/img-2.jpg');21background-position: center;22background-size: cover;23background-repeat: no-repeat;24color: #fff;25font-size: 100px;26}
27
28.products {29background-image: url('/images/img-1.jpg');30background-position: center;31background-size: fill;32background-repeat: no-repeat;33color: #fff;34font-size: 100px;35}
36
37.sign-up {38background-image: url('/images/img-8.jpg');39background-position: center;40background-size: cover;41background-repeat: no-repeat;42color: #fff;43font-size: 100px;44}
45