-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
163 lines (145 loc) · 2.65 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;600&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "poppins";
}
body{
margin: 0 auto;
}
/* Navigation section */
.logoimage{
padding: 0 2rem;
}
nav{
background-color: rgb(24, 53, 80);
display: flex;
flex-direction: row;
padding: 1rem 3rem;
justify-content: space-between;
align-items: center;
}
ul{
display: flex;
flex-direction: row;
align-items: center;
list-style: none;
gap: 5rem;
font-size: 30px;
color: #fff;
}
.loginButton{
border: none;
font-size: 30px;
padding: 10px 30px;
border-radius: 30px;
background-color: aqua;
}
a {
text-decoration: none;
}
/* about us */
.about{
background-color: rgb(10, 38, 64);
color:white;
height: 600px;
padding: 4rem 8rem;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 1.5rem 1.5rem;
}
h1{
font-size: 3rem;
}
p{
opacity: 0.5;
font-size: 25px;
}
/* hero images */
.grid_items{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 300px 300px;
gap: 2rem 2rem;
position: absolute;
top: 680px;
width: 50%;
justify-content: center;
opacity: 0.85;
}
.grid_items > :nth-child(1){
width: 348px;
height: 368px;
border-radius: 20px;
}
.grid_items > :nth-child(2){
margin-top: 120px;
grid-row: span 2;
width: 380px;
height: 563px;
border-radius: 20px;
}
.grid_items > :nth-child(3){
width: 348px;
height: 368px;
border-radius: 20px;
}
.grid_items > :nth-child(4){
margin-top: 70px;
width: 348px;
height: 368px;
border-radius: 20px;
}
.grid_items > :nth-child(5){
margin-top: 70px;
width: 348px;
height: 368px;
border-radius: 20px;
}
.hero_images{
display: flex;
justify-content: center;
align-items: center;
}
/* our_story */
.our_story{
margin-top: 650px;
padding: 5rem;
display: flex;
flex-direction: column;
gap: 2rem;
}
.button_readMore{
display: flex;
flex-direction: row;
gap: 3rem;
margin-top: 10px;
}
button{
border-radius: 100px;
padding: 15px 50px;
font-size: 20px;
background-color: aquamarine;
}
/* Our Team */
.our_team{
margin-top: 3rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 4rem 5rem;
gap: 3rem;
background-color: rgb(24, 53, 80);
color: #fff;
}
.team_image_section{
display: flex;
flex-direction: row;
justify-content: center;
gap: 3rem;
height: px;
}