-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (64 loc) · 1.12 KB
/
Copy pathstyle.css
File metadata and controls
67 lines (64 loc) · 1.12 KB
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins',sans-serif;
}
.first{
width: 100%;
height: 100vh;
background-color:#028C77;
position: relative;
padding: 0 5%;
display: flex;
align-items: center;
justify-content: center;
}
nav{
width: 100%;
position: absolute;
top: 0;
left: 0;
padding: auto;
display: flex;
align-items: center;
justify-content: space-between;
}
nav .logo{
width: 80px;
}
nav ul li{
list-style: none;
display: inline-block;
margin: 40px;
}
nav ul li a{
text-decoration: none;
color: black;
font-size: 17px;
}
.second{
text-align: center;
}
.second h1{
font-size: 160px;
color: black;
font-weight: 600;
}
.second a{
text-decoration: none;
display: inline-block;
color: #000;
font-size: 24px;
border: 2px solid #000;
padding: 14px 70px;
border-radius: 50px;
margin-top: 20px;
}
.back-video{
position: absolute;
width: 2000px;
bottom: 0;
right: 0;
opacity: 0.1;
}