-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathApp.css
More file actions
44 lines (40 loc) · 885 Bytes
/
App.css
File metadata and controls
44 lines (40 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Fondamento", cursive;
}
.home,
.services,
.products,
.sign-up {
display: flex;
height: 90vh;
align-items: center;
justify-content: center;
font-size: 3rem;
}
.services {
background-image: url("https://wallpaperset.com/w/full/9/6/e/93952.jpg");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
color: #fff;
font-size: 100px;
}
.products {
background-image: url("https://wallpaperset.com/w/full/9/6/e/93952.jpg");
background-position: center;
background-size: fill;
background-repeat: no-repeat;
color: #fff;
font-size: 100px;
}
.sign-up {
background-image: url("https://wallpaperset.com/w/full/9/6/e/93952.jpg");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
color: #fff;
font-size: 100px;
}