35 lines
632 B
CSS
35 lines
632 B
CSS
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
background-color: #F8F9FA;
|
|
color: #212529;
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(to bottom, rgba(13, 110, 253, 0.05), rgba(255, 255, 255, 0));
|
|
padding: 6rem 0;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-weight: 800;
|
|
font-size: 3.5rem;
|
|
}
|
|
|
|
.feature-icon {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 4rem;
|
|
height: 4rem;
|
|
border-radius: 0.75rem;
|
|
}
|
|
|
|
.footer {
|
|
padding: 3rem 0;
|
|
background-color: #FFFFFF;
|
|
}
|