-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
59 lines (44 loc) · 984 Bytes
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: "poppins",sans-serif ;
}
:root{
--main-color:#f0b30f;
}
.theme-text{
color: var(--main-color);
}
.act{
color: var(--main-color);
border-bottom: 1px solid var(--main-color);
}
.navbar ul li a:hover{
color: var(--main-color);
border-bottom: 1px solid var(--main-color);
}
.header{
background-image:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)) ,url(./pexels-fauxels-3183197.jpg);
width: 100%;
height: 100vh;
background-position: center;
background-size:cover;
position: relative;
}
.wave{
position: absolute;
bottom: -70px;
right: 0;
}
.middle{
height: 80vh;
width: 80%;
display:flex;
justify-content: start;
align-items: center;
}
.middle h1{
font-size: 68px;
}