32 lines
601 B
CSS
32 lines
601 B
CSS
/* static/css/custom.css */
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Inter:wght@400;500&display=swap');
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
|
|
font-family: 'Poppins', sans-serif;
|
|
}
|
|
|
|
.hero-section {
|
|
background: linear-gradient(45deg, #4F46E5, #10B981);
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #4F46E5;
|
|
border-color: #4F46E5;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #4338CA;
|
|
border-color: #4338CA;
|
|
}
|
|
|
|
.language-toggle {
|
|
position: absolute;
|
|
top: 1rem;
|
|
right: 1rem;
|
|
}
|