19 lines
319 B
CSS
19 lines
319 B
CSS
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-md);
|
|
z-index: 2;
|
|
}
|
|
|
|
.title {
|
|
font-family: var(--font-athelas);
|
|
font-size: var(--font-size-title);
|
|
font-weight: 700;
|
|
font-style: italic;
|
|
line-height: 1.4;
|
|
color: #ffffff;
|
|
text-align: left;
|
|
white-space: pre-line;
|
|
margin: 0;
|
|
}
|