-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
69 lines (55 loc) · 953 Bytes
/
styles.css
File metadata and controls
69 lines (55 loc) · 953 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
.nav{
display: flex;
justify-content: space-between;
font-size: 20px;
text-decoration: black;
align-items: center;
}
.brand{
color: red;
font-size:4vw;
font-weight: bold;
font-family: sans-serif;
position: relative;
margin: 0;
}
.words{
padding-left: 2%;
}
.nav2{
display: flex;
flex-direction: column;
gap: 30px;
}
.nav3{
display: flex;
background-color: red;
color: white;
padding: 10px;
border-radius: 6px;
font-size: 30px;
}
.body{
display: flex;
justify-content: space-around;
font-family: sans-serif;
font-size: 18px;
}
.testimonial{
background-color: rgb(214, 214, 214);
padding: 2%;
font-size: 20px;
border-radius: 6px;
}
.bottom{
position: absolute;
width: 100%;
bottom: 0%;
padding: 2%;
background-color: black;
color: white;
font-family: sans-serif;
font-size: 30px;
text-align: center;
border-radius: 5px;
}