86 lines
1.7 KiB
CSS
86 lines
1.7 KiB
CSS
/* Gradient Background */
|
|
body {
|
|
background: linear-gradient(135deg, #000000, #1a1a1a 70%);
|
|
margin: 0;
|
|
padding: 0;
|
|
color: #ffffff;
|
|
font-family: "Inter", sans-serif; /* Adjust to match your global font */
|
|
}
|
|
|
|
/* Main Container */
|
|
.home-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
/* Main Content */
|
|
.home-content {
|
|
flex: 1;
|
|
text-align: center;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.home-title {
|
|
font-size: 3rem;
|
|
font-weight: 800;
|
|
color: #00b7ff; /* Neon blue */
|
|
margin-bottom: 1rem;
|
|
text-shadow: 0 0 15px rgba(0, 183, 255, 0.8), 0 0 25px rgba(0, 183, 255, 0.5);
|
|
}
|
|
|
|
.home-subtitle {
|
|
font-size: 1.2rem;
|
|
color: #cccccc; /* Light gray */
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
/* Buttons */
|
|
.home-buttons {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.home-button {
|
|
background-color: #00b7ff;
|
|
color: #000;
|
|
padding: 0.8rem 2rem;
|
|
font-size: 1rem;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
|
transition: background-color 0.3s, transform 0.3s;
|
|
}
|
|
|
|
.home-button:hover {
|
|
background-color: #007bbd;
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.home-button-alt {
|
|
background-color: #555555;
|
|
color: #ffffff;
|
|
padding: 0.8rem 2rem;
|
|
font-size: 1rem;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
|
transition: background-color 0.3s, transform 0.3s;
|
|
}
|
|
|
|
.home-button-alt:hover {
|
|
background-color: #444444;
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
/* Footer */
|
|
.home-footer {
|
|
text-align: center;
|
|
padding: 1rem;
|
|
font-size: 0.9rem;
|
|
color: #aaaaaa; /* Subtle gray for footer */
|
|
}
|