-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (47 loc) · 853 Bytes
/
style.css
File metadata and controls
47 lines (47 loc) · 853 Bytes
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family:Georgia, 'Times New Roman', Times, serif;
list-style: none;
text-decoration: none;
}
body{
background-color: #111;
/* scroll-behavior: smooth; */
color: #fff;
}
header{
display: flex;
justify-content: space-around;
align-items: center;
height: 75px;
}
header .logo h3{
font-size: 25px;
letter-spacing: 5px;
font-weight: bold;
}
span{
color: yellow;
}
header .nav ul{
display: flex;
justify-content: center;
align-items: center;
gap: 40px;
}
header .nav ul li a{
color: #fff;
font-size: 20px;
}
.home h1{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.home h1{
font-size: 70px;
text-align: center;
}