68 lines
1.0 KiB
CSS
68 lines
1.0 KiB
CSS
.home-container {
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
background-color: #f4f4f4;
|
|
padding: 20px;
|
|
}
|
|
|
|
.hero-section {
|
|
background: #4CAF50;
|
|
color: white;
|
|
padding: 50px 20px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.hero-title {
|
|
font-size: 3em;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.hero-description {
|
|
font-size: 1.2em;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.cta-button {
|
|
background-color: #fff;
|
|
color: #4CAF50;
|
|
border: none;
|
|
padding: 15px 30px;
|
|
font-size: 1.1em;
|
|
cursor: pointer;
|
|
border-radius: 5px;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.cta-button:hover {
|
|
background-color: #388E3C;
|
|
color: white;
|
|
}
|
|
|
|
.about-section {
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.features {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.feature {
|
|
background-color: #ffffff;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
width: 30%;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.feature h3 {
|
|
font-size: 1.5em;
|
|
color: #333;
|
|
}
|
|
|
|
.feature p {
|
|
font-size: 1.1em;
|
|
color: #666;
|
|
}
|