60 lines
861 B
CSS
60 lines
861 B
CSS
|
|
body {
|
|
font-family: "Poppins", sans-serif;
|
|
color: #212529;
|
|
}
|
|
|
|
.navbar {
|
|
box-shadow: 0 2px 4px rgba(0,0,0,.05);
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(135deg, #f8f9fa, #e9ecef);
|
|
padding: 6rem 1.5rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-weight: 700;
|
|
font-size: 3.5rem;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.25rem;
|
|
color: #6c757d;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #0d6efd;
|
|
border-color: #0d6efd;
|
|
padding: 0.75rem 1.5rem;
|
|
font-weight: 500;
|
|
border-radius: 0.3rem;
|
|
}
|
|
|
|
.section-title {
|
|
font-weight: 600;
|
|
margin-bottom: 3rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.footer {
|
|
background-color: #f8f9fa;
|
|
padding: 3rem 0;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.footer h5 {
|
|
font-weight: 600;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.footer a {
|
|
color: #6c757d;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.footer a:hover {
|
|
color: #0d6efd;
|
|
}
|