-
Notifications
You must be signed in to change notification settings - Fork 0
/
Style.css
62 lines (52 loc) · 1.03 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
* {
box-sizing: border-box;
}
body {
font-family: "poppins", sans-serif;
background-image: url('./bg.jpg');
min-height: 100vh;
background-size: cover;
background-position: center center;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
font-size: 4rem;
margin-top: 5rem;
font-weight: bold;
color: whitesmoke;
font-family: "Lobster";
}
.row-container {
display: flex;
flex-direction: row;
}
.countdown-container {
}
.big-text {
font-weight: bold;
font-size: 6rem;
line-height: 1;
margin: 1rem 2rem;
color: white;
}
.countdown-e {
text-align: center;
}
.countdown-e span {
font-size: 1.3rem;
color: white;
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: black;
color: white;
text-align: center;
}