-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
130 lines (110 loc) · 2.32 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@100;200;300;400;500;600;700;800&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
nav{
background: #1b1b1b;
width: 100%;
padding: 10px 0;
position: fixed;
z-index: 1;
}
nav .navbar{
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
max-width: 1250px;
/* background: red; */
margin: auto;
}
nav .navbar ul{
list-style: none;
display: flex;
gap: 25px;
}
.navbar .logo a{
text-decoration: none;
color: #fff;
font-size: 32px;
font-weight: 620;
margin-right: 10px;
}
.navbar ul a{
text-decoration: none;
color: #fff;
font-weight: 550;
padding: 5px 8px;
border-radius: 3.5px;
transition: all 0.3s ease;
}
.navbar ul a:hover{
background-color: #fff;
color: #1b1b1b;
}
.image{
background: url(./image/camera.jpg) no-repeat;
height: 100vh;
width: 100%;
background-position: center;
background-size: cover ;
position: relative;
}
.image::before{
content: '';
position: absolute;
height: 100%;
width: 100%;
background: rgb(0, 0, 0, 0.18);
}
.center{
position: absolute;
top: 52%;
left: 50%;
width: 100%;
transform: translate(-50%, -50% );
padding: 0 20px;
text-align: center;
}
.center .title{
font-size: 55px;
color: #fff;
font-weight: 600;
filter: drop-shadow(2px 3px 1.5px #eb471e91);
}
.center .sub_title{
font-size: 52px;
color: #fff;
font-weight: 600;
filter: drop-shadow(2px 3px 1.5px #eb471e91);
}
.center .btn{
margin-top: 20px;
}
.center .btn button{
height: 55px;
width: 170px;
border-radius: 5px;
border: 2px solid #fff;
margin-right: 10px;
font-size: 20px;
font-weight: 550;
padding: 0 10px;
cursor: pointer;
outline: none;
transition: all 0.3s ease;
}
.center .btn button:first-child{
color: #fff;
background: none;
}
.center .btn button:first-child:hover{
background-color: #fff;
color: #1b1b1b;
}
.center .btn button:last-child:hover{
color: rgb(212, 4, 4);
}