18 lines
291 B
SCSS
18 lines
291 B
SCSS
|
|
.services {
|
||
|
|
padding: 5rem 3rem;
|
||
|
|
background-color: #fdfaf6;
|
||
|
|
|
||
|
|
h2 {
|
||
|
|
font-size: 2.5rem;
|
||
|
|
font-weight: 900;
|
||
|
|
text-align: center;
|
||
|
|
margin-bottom: 3rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.cards {
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
gap: 2rem;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|