-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (50 loc) · 891 Bytes
/
style.css
File metadata and controls
54 lines (50 loc) · 891 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
48
49
50
51
52
53
54
* {
box-sizing: border-box;
}
body {
background-image: url("starfield.jpg");
background-size: cover;
background-position-x: center;
font-family: "Montserrat";
display: flex;
flex-direction: column;
align-items: center;
padding-top: 128px;
text-shadow: 4px 4px #000000c6;
}
.countdown-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
h1 {
text-align: center;
margin-top: 96px;
font-size: 64px;
font-weight: lighter;
color: rgb(223, 220, 23);
}
h2 {
text-align: center;
font-size: 180px;
color: rgb(223, 220, 23);
margin: 0;
}
p {
text-align: center;
font-weight: lighter;
color: rgb(223, 220, 23);
}
.big-text {
font-size: 192px;
font-weight: bolder;
margin: 48px;
margin-bottom: -32px;
text-align: center;
}
span {
font-size: 32px;
font-weight: lighter;
color: rgb(223, 220, 23);
margin: 128px;
}