-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
130 lines (110 loc) · 2.6 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body{
font-family: 'Poppins', sans-serif;
}
a{
text-decoration: none;
}
ul{
list-style: none;
}
a:hover{
color: #ffffff;
background-color: #000000;
/* box-shadow: 5px 5px #c0c0c0; */
}
.btn :hover{
color: #ffffff;
background-color: #000000;
box-shadow: 5px 5px #c0c0c0;
}
.container{
max-width: 1114px;
margin: 0px auto;
padding: 0px 20px;
}
.btn a{
padding: 8px 15px;
border-radius: 30px;
color: #ffffff;
display: inline-flex;
align-items: center;
gap: 10px;
}
.btn.trans a{
background: rgba(255, 255, 255,0.3);
}
.btn.primary a{
background-color: #231A36;
}
.section-heading{
max-width: 600px;
margin: 0px auto;
text-align: center;
margin-bottom: 50px;
}
.section-heading h2{
margin-bottom: 25px;
color: #231A36;
}
.section-heading p{
color: #426666;
}
h1{
font-size: 92px;
color: #eeefed;
}
h2{
font-size: 40px;
}
header {
padding: 15px 0px;
}
.header-wrapper{
display: flex;
justify-content: space-between;
align-items: center;
}
.header-wrapper nav ul{
display: flex;
gap: 40px;
}
.header-wrapper nav ul li a {
color: #ffffff;
}
@media screen and (max-width: 654px) {
.header-wrapper ul li{
display: none;
}
.banner-wrapper h1{
font-size:70px;
font-weight: 300;
}
}
.banner{
color:#ffffff;
text-align: center;
padding: 125px 0px;
}
.header-banner{
background:url("./image/yannis-h-uaPaEM7MiQQ-unsplash.jpg");
background-repeat: no-repeat;
background-size: cover;
backdrop-filter: blur(25px);
background-position: center;
}
.banner h1{
margin: 0px 0px 25px 0px;
}
.banner h1 span,.banner p span{
display: block;
}
.banner .btn a{
margin-top: 50px;
/* display: inline-block; */
}