22 lines
399 B
CSS
22 lines
399 B
CSS
.section {
|
|
background: var(--Scandic-Brand-Pale-Peach);
|
|
padding: var(--Spacing-x9) var(--Spacing-x2);
|
|
color: var(--Scandic-Brand-Burgundy);
|
|
}
|
|
|
|
.maxWidth {
|
|
margin: 0 auto;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-direction: column;
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.section {
|
|
padding: 160px var(--Spacing-x9);
|
|
}
|
|
.maxWidth {
|
|
flex-direction: row;
|
|
}
|
|
}
|