58 lines
934 B
CSS
58 lines
934 B
CSS
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #F8FAFC;
|
|
color: #1E293B;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Georgia', serif;
|
|
}
|
|
|
|
.gradient-text {
|
|
background: linear-gradient(to right, #6366F1, #EC4899);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
|
|
.navbar {
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.nav-link {
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.nav-link:hover {
|
|
color: #6366F1;
|
|
}
|
|
|
|
.section {
|
|
padding: 6rem 0;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.form-control:focus {
|
|
box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
|
|
border-color: #6366F1;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #6366F1;
|
|
border-color: #6366F1;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #4F46E5;
|
|
border-color: #4F46E5;
|
|
}
|