48 lines
820 B
CSS
48 lines
820 B
CSS
html {
|
|
scroll-behavior: smooth;
|
|
scroll-padding-top: 70px;
|
|
}
|
|
|
|
body {
|
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
background-color: #F8F9FA;
|
|
}
|
|
|
|
.hero-section {
|
|
background: linear-gradient(45deg, #0D6EFD, #0A58CA);
|
|
padding: 100px 0;
|
|
}
|
|
|
|
.navbar-brand {
|
|
color: #0D6EFD !important;
|
|
}
|
|
|
|
.nav-link {
|
|
color: #6C757D;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.nav-link:hover, .nav-link.active {
|
|
color: #0D6EFD;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
|
|
transition: transform 0.2s ease-in-out;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.accordion-button:not(.collapsed) {
|
|
color: #fff;
|
|
background-color: #0D6EFD;
|
|
}
|
|
|
|
.accordion-button:focus {
|
|
box-shadow: none;
|
|
}
|