mirror of https://github.com/reiyua/reiyua.lol.git
86 lines
1.3 KiB
CSS
86 lines
1.3 KiB
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
#bg-video {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
transform: translate(-50%, -50%);
|
|
z-index: -1;
|
|
}
|
|
|
|
.centered-content {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
text-align: center;
|
|
color: #ffffff;
|
|
width: 100%;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 4em;
|
|
font-family: 'Jersey 10', sans-serif;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.tagline {
|
|
font-size: 1.2em;
|
|
margin-top: 10px;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.social-icons {
|
|
margin-top: 15px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
|
|
.social-logo {
|
|
width: 50px;
|
|
height: 50px;
|
|
object-fit: contain;
|
|
transition: transform 0.3s ease;
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
|
|
.social-logo.github-logo {
|
|
width: 60px !important;
|
|
height: 60px !important;
|
|
}
|
|
|
|
.social-logo.x-logo,
|
|
.social-logo.email-logo {
|
|
width: 50px;
|
|
height: 50px;
|
|
} |