-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (53 loc) · 1.17 KB
/
Copy pathstyle.css
File metadata and controls
61 lines (53 loc) · 1.17 KB
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
/* Global Styles */
body {
background-color: black;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
color: white;
position: relative;
}
/* Logo Styles */
.logo {
position: absolute;
top: 20px;
right: 20px;
max-width: 150px;
width: auto;
}
/* Container with the background image */
.container {
background: url('https://i.postimg.cc/TY28jTqJ/bg4-ia.jpg') no-repeat center center/cover;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
/* Content div for text and button */
.content {
text-align: center;
background-color: rgba(0, 0, 0, 0.5);
padding: 20px 40px;
border-radius: 8px;
}
.content h2 {
margin-bottom: 20px;
}
/* Button Styles */
button {
background-color: #ff1b7b;
border: none;
padding: 10px 20px;
font-size: 1.2em;
color: white;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #1ABC9C;
}
/* Footer Styles */
footer {
text-align: center;
padding: 10px;
}