Skip to content

Commit 85c974c

Browse files
authored
Create styles.css
1 parent 36a1baf commit 85c974c

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

DateGuarantee/styles.css

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
body {
2+
margin: 0;
3+
padding: 0;
4+
height: 100vh;
5+
overflow: hidden;
6+
display: flex;
7+
align-items: center;
8+
justify-content: center;
9+
flex-direction: column;
10+
}
11+
12+
#bgVideo {
13+
position: fixed;
14+
width: 100%;
15+
height: 100%;
16+
object-fit: cover;
17+
z-index: -1;
18+
}
19+
20+
.button-container {
21+
text-align: center;
22+
z-index: 1;
23+
}
24+
25+
button {
26+
padding: 10px 20px;
27+
font-size: 16px;
28+
cursor: pointer;
29+
display: block;
30+
margin: 10px auto;
31+
}
32+
33+
h1 {
34+
text-align: center;
35+
color: white;
36+
}

0 commit comments

Comments
 (0)