-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (37 loc) · 742 Bytes
/
style.css
File metadata and controls
43 lines (37 loc) · 742 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
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,200&display=swap");
* {
box-sizing: border-box;
}
body {
background-image: url("./fabian-mardi-kVKz9qnJC-k-unsplash.jpg");
background-size: cover;
background-position: center center;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
font-family: "Poppins", sans-serif;
margin: 0;
}
h1 {
font-weight: normal;
font-size: 4rem;
margin-top: 5rem;
}
.countdown-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.big-text {
font-weight: bold;
font-size: 5rem;
line-height: 1;
margin: 0 2rem;
}
.countdown-el {
text-align: center;
}
.countdown-el span {
font-size: 1.3rem;
}