26 lines
357 B
CSS
26 lines
357 B
CSS
body {
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.hero-section {
|
|
background-color: #f8f9fa;
|
|
color: #333;
|
|
}
|
|
|
|
.feature {
|
|
background-color: #f8f9fa;
|
|
border-radius: 10px;
|
|
transition: transform .2s;
|
|
}
|
|
|
|
.feature:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.gallery-section img {
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.contact-section {
|
|
background-color: #f8f9fa;
|
|
} |