18 lines
260 B
CSS
18 lines
260 B
CSS
body {
|
|
padding-top: 56px;
|
|
}
|
|
|
|
.hero-section {
|
|
padding: 100px 0;
|
|
background: linear-gradient(to bottom, rgba(13, 110, 253, 0.1), white);
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
transition: transform 0.3s;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
}
|