66 lines
1.0 KiB
CSS
66 lines
1.0 KiB
CSS
|
|
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
background-color: #f7fafc;
|
|
color: #4a5568;
|
|
}
|
|
|
|
.navbar {
|
|
background-color: #ffffff;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,.1);
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(45deg, #2c5282, #38a169);
|
|
color: white;
|
|
padding: 100px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 3.5rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.section {
|
|
padding: 60px 0;
|
|
}
|
|
|
|
.section-title {
|
|
text-align: center;
|
|
margin-bottom: 40px;
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
color: #2c5282;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 4px 6px rgba(0,0,0,.1);
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.form-control {
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #2c5282;
|
|
border-color: #2c5282;
|
|
border-radius: 0.5rem;
|
|
padding: 12px 30px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #2a4b73;
|
|
border-color: #2a4b73;
|
|
}
|
|
|
|
.footer {
|
|
background-color: #2d3748;
|
|
color: white;
|
|
padding: 40px 0;
|
|
}
|