41 lines
608 B
CSS
41 lines
608 B
CSS
.title {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.title h1 {
|
|
font-size: 3rem;
|
|
font-weight: 300;
|
|
text-align: center;
|
|
margin: 0 2rem 2rem 2rem;
|
|
}
|
|
.title img {
|
|
width: 100%;
|
|
}
|
|
.content {
|
|
padding: 2rem 2rem;
|
|
font-size: 1.25rem;
|
|
}
|
|
.content > p {
|
|
text-align: center;
|
|
}
|
|
.content > p:not(:first-child) {
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.title {
|
|
flex-direction: row;
|
|
}
|
|
.title-reverse {
|
|
flex-direction: row-reverse;
|
|
}
|
|
.title > div {
|
|
width: 50%;
|
|
}
|
|
.content {
|
|
padding: 0 2rem;
|
|
}
|
|
.alternating-background-container > div {
|
|
padding: 4rem 0;
|
|
}
|
|
} |