-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
48 lines (48 loc) · 848 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@500&display=swap');
* {
font-family: 'Ubuntu', sans-serif;
margin: 0;
}
nav {
background-color: rgb(7, 6, 8);
color: rgb(246, 246, 253);
text-align: center;
padding: 12px;
}
nav h1 {
font-size: 61px;
font-weight: bold;
}
body {
color: rgb(7, 6, 8);
background-color: rgb(246, 246, 253);
}
section {
margin: auto;
width: 700px;
max-width: 68vw;
}
section h2 {
text-align: center;
margin-top: 15px;
font-size: 42px;
}
section h3 {
margin-bottom: 8px;
color: #4FCC13;
font-size: 27px;
}
section div {
background-color: rgb(220, 20, 60);
padding: 15px;
border: none;
border-radius: 13px;
margin-top: 20px;
line-height: 1.65;
font-size: 20px;
margin-bottom: 27px;
}
span {
color: rgb(246, 246, 253);
text-decoration: underline;
}