bl-frontend-rs/css/services.css

32 lines
725 B
CSS
Raw Normal View History

2023-04-10 13:25:04 +00:00
.services-section-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
2023-04-26 22:20:39 +00:00
margin-top: clamp(50px, 20vw, 150px);
2023-04-10 13:25:04 +00:00
}
.services-section-title {
font-family: Poppins;
2023-04-26 22:20:39 +00:00
font-size: clamp(30px, 6vw, 6vw);
2023-04-10 20:35:12 +00:00
font-weight: bold;
2023-04-10 13:25:04 +00:00
color: #111029;
text-align: center;
}
.services-section-services-container {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 50px;
2023-04-26 22:20:39 +00:00
}
@media only screen and (min-width: 750px) {
.services-section-title {
font-family: Poppins;
font-size: clamp(30px, 4.5vw, 45px);
font-weight: bold;
color: #111029;
text-align: center;
}
}