-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (42 loc) · 860 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
49
50
html {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
}
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;500;600&display=swap');
.wrapper {
width: 100vw;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: rgb(22, 22, 22);
}
.page-title {
text-align: center;
}
.page-title h1 {
color: rgb(255, 255, 255);
font-size: 5rem;
font-weight: 200;
font-family: 'Barlow', sans-serif;
margin: 0;
}
.page-title h2 {
color: rgb(255, 255, 255);
font-size: 2rem;
font-weight: 100;
font-family: 'Barlow', sans-serif;
margin: 0;
}
@media screen and (max-width: 600px) {
.page-title h1 {
font-size: 3rem;
}
.page-title h2 {
font-size: 1.5rem;
}
}