-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (57 loc) · 1.24 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
63
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #121212;
font-family: "Sora", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-size: 17px;
color: #ffffff;
}
.container {
text-align: center;
background-color: rgba(255, 255, 255, 0.1); /* Transparent effect */
padding: 40px;
border-radius: 15px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.logo {
font-family: "Rubik", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-size: 120px;
color: #ffffff;
margin-bottom: 20px;
}
.buttons button {
background-color: transparent;
color: #ffffff;
border: 2px solid #ffffff;
padding: 10px 20px;
margin: 10px;
font-size: 20px;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s ease, color 0.3s ease;
}
.buttons button:hover {
background-color: #ffffff;
color: #121212;
}
.text {
font-family: "Sora", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-size: 20px;
color: #ffffff;
}