22 lines
469 B
CSS
22 lines
469 B
CSS
.services-section-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
margin-top: 100px;
|
|
}
|
|
.services-section-title {
|
|
font-family: Poppins;
|
|
font-size: clamp(21px, 3vw, 3vw);
|
|
font-weight: bold;
|
|
color: #111029;
|
|
text-align: center;
|
|
}
|
|
.services-section-services-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 50px;
|
|
} |