38 lines
700 B
CSS
38 lines
700 B
CSS
.artistic-error-container {
|
|
background-color: #ffffff;
|
|
min-height: 70vh;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 5rem 0;
|
|
}
|
|
|
|
.editorial-headline {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: 3.5rem;
|
|
line-height: 1.1;
|
|
letter-spacing: -0.02em;
|
|
color: #111111;
|
|
}
|
|
|
|
.body-manifesto-text {
|
|
font-size: 1.1rem;
|
|
max-width: 400px;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.meta-tag {
|
|
font-size: 0.75rem;
|
|
letter-spacing: 0.2em;
|
|
color: #dc3545; /* Subtle red for system status */
|
|
}
|
|
|
|
.btn-outline-dark {
|
|
border: 1px solid #111;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.btn-outline-dark:hover {
|
|
background-color: #111;
|
|
color: #fff;
|
|
}
|