28 lines
479 B
SCSS
28 lines
479 B
SCSS
.features {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
h1 {
|
|
font-size: 3rem;
|
|
text-align: center;
|
|
margin-bottom: 1.2rem;
|
|
}
|
|
|
|
.gridlayout {
|
|
display: grid;
|
|
grid-template-columns: 550px;
|
|
padding: 1rem;
|
|
width: 100%;
|
|
justify-content: center;
|
|
justify-items: center;
|
|
align-content: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
@media (min-width: 1150px) {
|
|
.gridlayout {
|
|
grid-template-columns: repeat(2, 550px);
|
|
}
|
|
}
|
|
}
|