28 lines
477 B
CSS
28 lines
477 B
CSS
/* Custom Styles */
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.hero-section {
|
|
margin-top: 5rem;
|
|
margin-bottom: 5rem;
|
|
}
|
|
|
|
.cta-button {
|
|
padding: 0.75rem 1.5rem;
|
|
font-size: 1.25rem;
|
|
font-weight: 500;
|
|
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
|
}
|
|
|
|
.cta-button:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.footer {
|
|
background-color: #f8f9fa;
|
|
}
|