31 lines
632 B
CSS
31 lines
632 B
CSS
body {
|
|
font-family: 'Lato', sans-serif;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Merriweather', serif;
|
|
}
|
|
|
|
.hero-section {
|
|
background: linear-gradient(to right, rgba(111, 66, 193, 0.9), rgba(253, 126, 20, 0.9)), url('https://picsum.photos/1600/900') no-repeat center center;
|
|
background-size: cover;
|
|
color: white;
|
|
padding: 150px 0;
|
|
margin-top: 56px;
|
|
}
|
|
|
|
.card {
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #6f42c1;
|
|
border-color: #6f42c1;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #59369a;
|
|
border-color: #59369a;
|
|
}
|