-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwelcome.css
More file actions
53 lines (46 loc) · 1016 Bytes
/
welcome.css
File metadata and controls
53 lines (46 loc) · 1016 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
44
45
46
47
48
49
50
51
52
53
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
body.welcome-screen {
margin: 0;
padding: 0;
height: 100vh;
background: linear-gradient(to bottom right, #0f0f0f, #2e2e2e);
color: white;
font-family: 'Archivo Black', sans-serif;
display: flex;
align-items: center;
justify-content: center;
}
.welcome-container {
text-align: center;
}
.welcome-title {
font-size: 4rem;
margin-bottom: 20px;
color: #f0f0f0;
letter-spacing: 1px;
}
.fullscreen-note {
font-size: 1rem;
margin-bottom: 30px;
color: #aaa;
}
.button-group {
display: flex;
gap: 20px;
justify-content: center;
}
button {
background-color: #1e1e1e;
color: white;
border: 2px solid #fff;
padding: 12px 24px;
font-size: 1rem;
font-family: 'Archivo Black', sans-serif;
cursor: pointer;
transition: all 0.3s ease;
border-radius: 5px;
}
button:hover {
background-color: #333;
border-color: #ccc;
}