-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
44 lines (42 loc) · 781 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,300&display=swap');
*{
box-sizing: border-box;
}
body{
background-image: url(assets/pic.jpg);
background-position: center center;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 100vh;
font-family:"Poppins",sans-serif;
margin: 0;
}
.countdown-container{
display: flex;
flex-wrap: wrap;
}
h1{
font-weight:bold;
font-size: 3.5rem;
margin-top: -10rem;
}
.color{
color: white;
}
.big-text{
font-weight: bolder;
font-size: 5.9rem;
line-height: 1;
margin: 0 2rem;
}
.countdown-elem{
text-align: center;
}
.countdown-elem span{
font-size: 1.5rem;
margin: 0 2rem;
font-weight: lighter;
}