-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
162 lines (130 loc) · 2.22 KB
/
style.css
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
body {
margin: 0%;
padding: 0%;
}
.navbar {
padding: 50px;
display: flex;
justify-content: space-between;
align-items: center;
height: 50px;
}
.navbar a {
color: black;
text-decoration: none;
display: block;
font-weight: 500;
font-size: 20px;
}
.navbar ul li {
list-style-type: none;
display: inline-block;
margin-right: 20px;
}
.navbar ul li a {
font-size: 30px;
}
.navbar img {
height: 100px;
margin-right: 20px;
}
/* header start */
.header {
background-image: url(images/landing.jpg);
padding: 450px 0px;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.header-text {
color: white;
text-align: center;
}
.header-text h1 {
font-size: 100px;
font-weight: 900;
}
.header-text p {
font-size: 35px;
}
/* header end */
/* about section start */
.about {
text-align: center;
}
.about h2 {
font-size: 50px;
font-weight: 900;
margin: 0px;
}
.about-header {
padding: 50px 0px;
}
.about-header hr {
width: 400px;
height: 5px;
background-color: #13b36b;
border: none;
}
.about-content {
padding-top: 30px;
display: flex;
justify-content: space-around;
color: #000;
}
.about-content h3 {
color: #13b36b;
font-weight: 900;
font-size: 40px;
}
.about-content p {
font-size: 30px;
color: #191919a4;
}
.about img {
width: 100px;
}
/* about section end */
/* features section start */
.container {
background-color: #13b36b;
padding: 50px 0px;
margin: 30px 50px;
}
.features-section-content {
display: flex;
align-items: center;
justify-content: space-evenly;
}
.container h2 {
color: white;
text-align: center;
margin: 0px;
font-size: 50px;
}
.features-section-text hr {
width: 600px;
height: 5px;
background-color: white;
border: none;
}
.features-section-text {
color: white;
}
.features-section-text h3 {
color: white;
font-weight: 900;
font-size: 40px;
}
.features-section-text p {
font-size: 30px;
}
.spotify-icon img {
width: 200px;
margin-right: 40px;
}
.spotify-app img {
width: 400px;
height: auto;
}
/* features section end */