-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (72 loc) · 1.39 KB
/
Copy pathstyle.css
File metadata and controls
104 lines (72 loc) · 1.39 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
background-color: rgba(129, 129, 15, 0.53);
}
.navbar ul {
display: flex;
list-style: none;
}
.navbar ul li {
margin: 0 1rem;
}
.navbar ul li a {
text-decoration: none;
color: #fff;
}
.navbar ul li :hover{
background-color: black;
}
.hero {
text-align: center;
padding: 25px;
background-image: url(../plane.jpg);
background-size: cover;
background-position: center; /
background-repeat: no-repeat
padding: 5rem 1rem;
color: #fff;
}
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.2rem;
margin-bottom: 35px;
}
#ctaButton {
padding: 0.8rem 2rem;
font-size: 1rem;
color: #fff;
background-color: black;
border: none;
border-radius: 5px;
cursor: pointer;
}
#ctaButton:hover {
background-color: rgb(216, 186, 148);
}
.features {
padding: 2rem 1rem;
text-align: center;
background-color: rgba(109, 98, 29, 0.53);
}
.feature-cards {
display: fleX;
justify-content: space-around;
margin-top: 2rem;
}
.card h1{
margin-bottom: 1rem;
}
.about {
padding: 2rem 1rem;
text-align: center;
background-color:white;