-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
67 lines (56 loc) · 1.07 KB
/
styles.css
File metadata and controls
67 lines (56 loc) · 1.07 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
62
63
64
65
66
67
body {
margin: 0;
padding: 0;
overflow: hidden;
}
#backgroundVideo {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
background-color: rgba(0, 0, 0, 0);
z-index: -1;
}
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(11, 1, 1, 0.5);
z-index: -1;
}
.content {
text-align: center;
color: white;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
h1 {
font-size: 3em;
margin-bottom: 20px;
color: blue;
box-shadow: 0px 0px 8px 10px rgb(4, 4, 118);
}
p {
font-size: 1.5em;
margin-bottom: 30px;
}
a {
display: inline-block;
padding: 10px 20px;
background-color: blue;
color: white;
font-size: 1.2em;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease-in-out;
}
a:hover {
background-color: black;
}