52 lines
927 B
CSS
52 lines
927 B
CSS
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Poppins', sans-serif;
|
|
}
|
|
|
|
.hero {
|
|
background: url('https://images.pexels.com/photos/1407322/pexels-photo-1407322.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center;
|
|
background-size: cover;
|
|
color: white;
|
|
padding: 150px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 4rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.section-title {
|
|
text-align: center;
|
|
margin-bottom: 50px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.product-card, .blog-card {
|
|
border: none;
|
|
transition: transform 0.3s;
|
|
}
|
|
|
|
.product-card:hover, .blog-card:hover {
|
|
transform: translateY(-10px);
|
|
}
|
|
|
|
.product-card-img {
|
|
height: 200px;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.daily-tip {
|
|
background-color: #f8f9fa;
|
|
padding: 30px;
|
|
border-radius: 10px;
|
|
text-align: center;
|
|
} |