2024-08-22 04:25:25 +00:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
height: 100vh;
|
2024-08-22 04:38:34 +00:00
|
|
|
overflow: hidden;
|
2024-08-22 04:25:25 +00:00
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
}
|
|
|
|
|
2024-08-22 04:38:34 +00:00
|
|
|
#bg-video {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
|
2024-08-22 04:25:25 +00:00
|
|
|
.centered-content {
|
2024-08-22 04:42:29 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
2024-08-22 04:25:25 +00:00
|
|
|
text-align: center;
|
2024-08-22 04:38:34 +00:00
|
|
|
color: #ffffff;
|
2024-08-22 04:42:29 +00:00
|
|
|
width: 100%;
|
2024-08-22 04:25:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 4em;
|
2024-08-22 04:54:12 +00:00
|
|
|
font-family: 'Jersey 10', sans-serif;
|
2024-08-22 04:28:46 +00:00
|
|
|
color: #ffffff;
|
2024-08-22 04:25:25 +00:00
|
|
|
}
|
2024-08-22 04:54:12 +00:00
|
|
|
|
|
|
|
.credit {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 10px;
|
|
|
|
left: 10px;
|
|
|
|
color: #ffffff;
|
|
|
|
font-size: 0.8em;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.credit a {
|
|
|
|
color: #ffffff;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.credit a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|