-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
46 lines (43 loc) · 992 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
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2&family=Bree+Serif&family=Martel+Sans:wght@600&family=Poppins:ital,wght@0,200;0,400;1,400&display=swap');
*{
}
body{
background-image: url(back.jpg);
background-size: cover;
background-position: center center;
font-family: 'Poppins', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
/* justify-content: center; */
min-height: 100vh;
}
.countdown-container{
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
h1{
margin-top: 4rem;
font-weight: normal;
font-size: 2rem;
margin-bottom: 2rem;
}
.big-text{
font-weight: bold;
font-size: 40px;
line-height: 1rem;
margin: 1rem 2rem;
}
.coutdown-el{
display: flex;
flex-direction: column;
align-items: center;
}
.countdown-el span{
font-size: 1.5rem;
display: flex;
align-items: center;
justify-content: center;
}