16 lines
299 B
CSS
16 lines
299 B
CSS
|
.agents-title {
|
||
|
font-size: 34px;
|
||
|
font-family: Space Grotesk;
|
||
|
text-align: center;
|
||
|
margin-bottom: 50px;
|
||
|
}
|
||
|
.agents-container {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
flex-flow: row wrap;
|
||
|
gap: 30px;
|
||
|
|
||
|
padding: 20px;
|
||
|
}
|