60 lines
1007 B
CSS
60 lines
1007 B
CSS
|
|
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Merriweather:wght@700&display=swap');
|
|
|
|
body {
|
|
font-family: 'Lato', sans-serif;
|
|
background-color: #F8F9FA;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Merriweather', serif;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(45deg, #0A58CA, #5A8FD8);
|
|
color: white;
|
|
padding: 100px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 3.5rem;
|
|
}
|
|
|
|
.section {
|
|
padding: 80px 0;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
|
|
transition: transform 0.3s;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #0A58CA;
|
|
border-color: #0A58CA;
|
|
border-radius: 0.5rem;
|
|
padding: 10px 20px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #084aa3;
|
|
border-color: #084aa3;
|
|
}
|
|
|
|
.navbar {
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
|
|
}
|
|
|
|
.modal-content {
|
|
border-radius: 0.5rem;
|
|
}
|