-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
166 lines (152 loc) · 2.81 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
163
164
165
166
*{
margin: 0;
padding: 0;
width: auto;
}
section{
position: relative;
width: 100%;
}
header{
position: relative;
padding: 30px 100px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
background-color:#1F2937;
}
header .header-logo{
color: #F9FAF8;
font-size: 24px;
}
header .nav-bar a{
color: #E5E7EB;
font-size: 18px;
text-decoration: none;
border-radius: 10px;
padding: 2px 10px;
margin: 0px;
}
header a:hover{
background-color: #0a4597;
}
.section1 {
position: relative;
background-color:#1F2937;
display: flex;
flex-direction: row;
height: 70vh;
padding-top: 20px;
}
.main-text h2{
color: #F9FAF8;
font-size: 48px;
font-weight: extra-bold;
color:#F9FAF8;
padding: 10px 50px;
}
.main-text p{
color: #F9FAF8;
font-size: 18px;
color:#E5E7EB;
padding: 10px 50px;
}
.section1 .images{
position: relative;
right: 6%;
width: 100%;
display: flex;
flex-direction: row;
justify-content: flex-end;
}
section .cat1 img{
position: relative;
width: 70%;
height: 59vh;
border-radius: 150px 150px 150px 150px;
}
section .cat2 img{
position: relative;
width: 70%;
height: 40vh;
border-radius: 150px 150px 150px 150px;
}
.section2 {
position: relative;
background-color: rgb(230, 100, 100);
width: 100%;
height: auto;
display: flex;
flex-direction: row-reverse;
align-items: center;
justify-content: center;
/* padding: 20px 50px; */
}
.section2 img{
position: relative;
width: 200px;
height: 59vh;
border-radius: 150px 150px 150px 150px;
}
.section2 h2{
font-size: 36px;
font-weight: extra-bold;
color: #1f2937;
line-height: .9;
}
.section2 p{
font-size: 18px;
padding-top: 20px;
}
.section3{
background-color: #E5E7EB;
height: 100%;
width: auto;
position: relative;
display: flex;
flex-direction: row;
justify-content: center;
}
.section3 div{
position: relative;
flex: 1 1 auto;
}
.section3 img{
position: relative;
right: 50%;
width: 200px;
height: 59vh;
border-radius: 180px 180px 180px 180px;
display: flex;
justify-content: center;
}
.section3 h2{
font-size: 36px;
font-style: italic;
color: #1F2937;
line-height: .9;
padding: 20px 50px;
}
.section3 h3{
position: relative;
left: 20%;
padding-bottom: 30px;
width: 50%;
}
.section3 p{
position: relative;
font-size: 18px;
position: relative;
width: 50%;
padding: 20px 50px;
}
footer{
background-color:#1F2937;
height: 10vh;
position: relative;
display: flex;
justify-content: center;
align-items: center;
color: white;
}