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
|
|
|
|
2024-09-07 04:56:28 +00:00
|
|
|
.tagline {
|
2024-08-22 05:00:05 +00:00
|
|
|
font-size: 1.2em;
|
|
|
|
margin-top: 10px;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
2024-08-28 05:56:47 +00:00
|
|
|
|
|
|
|
.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;
|
2024-09-07 04:56:28 +00:00
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
2024-08-28 05:56:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.social-logo.github-logo {
|
2024-09-07 04:56:28 +00:00
|
|
|
width: 60px !important;
|
|
|
|
height: 60px !important;
|
2024-08-28 05:56:47 +00:00
|
|
|
}
|
|
|
|
|
2024-09-07 04:56:28 +00:00
|
|
|
.social-logo.x-logo,
|
|
|
|
.social-logo.email-logo {
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
2024-10-19 03:45:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.error-message {
|
|
|
|
font-size: 1.5em;
|
|
|
|
color: #ffcccb; /* Light red color */
|
|
|
|
background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
|
|
|
|
padding: 15px 30px;
|
|
|
|
border-radius: 10px;
|
|
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
|
|
|
|
margin-top: 20px;
|
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
|
|
|
font-family: 'Jersey 10', sans-serif;
|
|
|
|
}
|
2024-10-19 03:48:45 +00:00
|
|
|
|
|
|
|
.home-button {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 15px 30px;
|
|
|
|
margin-top: 20px;
|
|
|
|
background-color: #FAD6A5; /* Green button */
|
|
|
|
color: white;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 1.2em;
|
|
|
|
font-family: 'Jersey 10', sans-serif;
|
|
|
|
border-radius: 5px;
|
|
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
|
|
|
|
transition: background-color 0.3s ease, transform 0.3s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.home-button:hover {
|
|
|
|
background-color: #45a049; /* Darker green on hover */
|
|
|
|
transform: translateY(-3px); /* Slight raise effect */
|
|
|
|
}
|
|
|
|
|
|
|
|
.home-button:active {
|
|
|
|
background-color: #388E3C; /* Even darker when active */
|
|
|
|
transform: translateY(0); /* Return to original position */
|
|
|
|
}
|
2024-11-24 01:22:00 +00:00
|
|
|
|
|
|
|
.seo-button-container {
|
|
|
|
margin-top: 20px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.seo-button {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 10px 20px;
|
|
|
|
background-color: #ff9900; /* Change to your preferred color */
|
|
|
|
color: #fff;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 1rem;
|
|
|
|
border-radius: 5px;
|
|
|
|
transition: background-color 0.3s ease, transform 0.2s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.seo-button:hover {
|
|
|
|
background-color: #0056b3;
|
|
|
|
transform: scale(1.05);
|
|
|
|
}
|