-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (64 loc) · 1.01 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
body{
background: #2F2E41;
}
nav{
margin: 71px 98px 101px 99px;
display: flex;
justify-content: space-between;
font-family: 'JetBrains Mono', monospace;
font-weight: 500;
font-size: 14px;
line-height: 28px;
}
ul{
display: flex;
gap: 64px;
}
a{
color: #FFFFFF;
opacity: 1;
text-decoration: none;
}
a:hover{
color: #D3D3D3;
}
li {
list-style: none;
}
main{
text-align: center;
margin: auto 98px 157px 99px;
display: flex;
justify-content: space-between;
}
h1{
margin: 0px 0px 59px 18px;
font-family: 'JetBrains Mono', monospace;
font-weight: 700;
font-size: 46px;
line-height: 40px;
color: #FFFFFF;
}
span{
color: #00BFA6;
}
p{
font-family: 'Open Sans', sans-serif;
font-weight: 400;
font-size: 16px;
line-height: 28px;
color: #C2C2C2;
}
.line{
width: 568px;
margin: 0px auto 27px;
border: 0.1px solid #00BFA6;
}
footer{
font-family: 'JetBrains Mono';
text-align: center;
color: #FFFFFF;
font-weight: 500;
font-size: 14px;
line-height: 28px;
}