-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
75 lines (65 loc) · 1.06 KB
/
styles.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
63
64
65
66
67
68
69
70
71
72
73
74
75
@import url("https://www.w3schools.com/w3css/4/w3.css");
body,
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Segoe UI", Arial, sans-serif;
}
body {
background-image: url("bg.png");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 100vh;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
}
.header {
text-align: center;
color: white;
padding: 20px;
background-color: rgba(0, 0, 0, 0.7);
margin: 0 auto;
border-radius: 10px;
}
.header h1 {
font-size: 36px;
margin-bottom: 10px;
font-weight: 400;
}
.header h2 {
font-size: 24px;
margin-bottom: 20px;
font-weight: 400;
}
.header h3 {
font-size: 20px;
margin-bottom: 10px;
font-weight: 400;
}
.header h4 {
font-size: 16px;
margin-bottom: 20px;
font-weight: 400;
}
#countdown {
font-size: 20px;
color: white;
font-weight: bold;
}
.logo-container {
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
}
.logo-container img {
max-height: 60px;
margin: 10px;
}