25 lines
462 B
CSS
25 lines
462 B
CSS
.container {
|
|
display: grid;
|
|
gap: 60px;
|
|
grid-template-columns: 2fr 1fr;
|
|
margin: 0 auto;
|
|
max-width: 1200px;
|
|
padding: 30px 0px 45px;
|
|
}
|
|
|
|
.preamble {
|
|
color: #333;
|
|
font-family: Helvetica Neue, Roboto, Helvetica, Arial, sans-serif;
|
|
font-size: 1.25rem;
|
|
font-weight: 300;
|
|
line-height: normal;
|
|
margin-bottom: 0px;
|
|
text-transform: none;
|
|
}
|
|
|
|
@media screen and (min-width: 950px) {
|
|
.preamble {
|
|
font-size: 1.5rem;
|
|
line-height: 2.25rem;
|
|
}
|
|
} |