94 lines
1.7 KiB
CSS
94 lines
1.7 KiB
CSS
|
|
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@400;700&display=swap');
|
|
|
|
body {
|
|
font-family: 'Lato', sans-serif;
|
|
background-color: #FFF8F0;
|
|
color: #333333;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Playfair Display', serif;
|
|
font-weight: 700;
|
|
color: #333333;
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: 1.75rem;
|
|
color: #FF6347 !important;
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.pexels.com/photos/169198/pexels-photo-169198.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center;
|
|
background-size: cover;
|
|
color: white;
|
|
padding: 100px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 3.5rem;
|
|
color: white;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.25rem;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #FF6347;
|
|
border-color: #FF6347;
|
|
padding: 12px 30px;
|
|
font-size: 1.1rem;
|
|
border-radius: 8px;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #E5533D;
|
|
border-color: #E5533D;
|
|
}
|
|
|
|
section {
|
|
padding: 60px 0;
|
|
}
|
|
|
|
.section-title {
|
|
text-align: center;
|
|
margin-bottom: 50px;
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
|
|
}
|
|
|
|
.form-control {
|
|
border-radius: 8px;
|
|
padding: 12px;
|
|
}
|
|
|
|
.form-control:focus {
|
|
box-shadow: 0 0 0 0.25rem rgba(255, 99, 71, 0.25);
|
|
border-color: #FF6347;
|
|
}
|
|
|
|
footer {
|
|
background-color: #333333;
|
|
color: white;
|
|
padding: 40px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.toast-container {
|
|
position: fixed;
|
|
top: 20px;
|
|
right: 20px;
|
|
z-index: 1055;
|
|
}
|