57 lines
1.1 KiB
CSS
57 lines
1.1 KiB
CSS
|
|
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@400;500&display=swap');
|
|
|
|
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
background-color: #F8F9FA;
|
|
color: #212529;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Playfair Display', serif;
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(rgba(13, 110, 253, 0.1), rgba(0, 198, 255, 0.1)), url('https://picsum.photos/1600/900') no-repeat center center;
|
|
background-size: cover;
|
|
height: 100vh;
|
|
color: white;
|
|
}
|
|
|
|
.hero .display-4 {
|
|
font-size: 4.5rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #0D6EFD;
|
|
border-color: #0D6EFD;
|
|
border-radius: 0.75rem;
|
|
padding: 0.75rem 1.5rem;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.section {
|
|
padding: 6rem 0;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: 0.75rem;
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
|
|
}
|
|
|
|
.navbar {
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.navbar.scrolled {
|
|
background-color: rgba(255, 255, 255, 0.9);
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
|
|
}
|