-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyle.css
117 lines (99 loc) · 1.54 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "poppins";
/* font-family: 'Roboto', sans-serif; */
color: white;
}
html body {
padding: 0%;
margin: 0;
overflow-x: hidden;
}
#section-1 {
height: 100vh;
width: 100%;
background-color: black;
}
nav {
display: flex;
align-items: center;
justify-content: space-between;
padding: 30px 50px;
}
#section-1 h1 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 80px;
white-space: nowrap;
display: inline-block;
}
#part-2 {
display: flex;
gap: 50px;
}
#section-2 {
height: 100vh;
width: 100%;
background-color: aqua;
}
#section-2 h1 {
font-weight: 400;
font-size: 28rem;
padding-left: 10%;
color: black;
}
#section-3 {
display: flex;
/* padding-left:20% ; */
justify-content: center;
height: 200px;
width: 100%;
/* background-color: rgb(255, 255, 255); */
background-color: black;
}
svg {
background-color: #1f1f1f;
}
#section-4 {
background-color: aqua;
height: 100vh;
width: 100%;
}
#moving {
height: 100px;
width: 100vw;
background-color: #d9ff06;
padding: 1vw 0vw;
display: flex;
}
.looping {
display: flex;
align-items: center;
/* background-color: red; */
flex-shrink: 0;
transform: translateX(-100%);
}
.looping h1 {
color: #111;
padding: 0 1.5vw;
}
.looping img {
height: 35px;
}
footer {
background-color: #1f1f1f;
color: #fff;
padding: 20px 0;
text-align: center;
}
.container {
max-width: 960px;
margin: 0 auto;
}
p {
margin: 0;
}