/* Общие стили */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Georgia', serif;
    background-color: #2a2a2a; /* серый фон */
    color: #b3b3b3; /* текст тусклее на 20% */
    overflow-x: hidden;
}

header {
    text-align: center;
    margin: 30px 0 20px 0;
    font-size: 36px;
    color: #f5f5f5;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.8;
    font-size: 18px;
}

.content p {
    margin-bottom: 1.5em;
}

.content blockquote {
    margin: 1em 0;
    padding-left: 1em;
    border-left: 4px solid #888;
    color: #999; /* тусклый блок */
    font-style: italic;
}

hr {
    border: 0;
    border-top: 1px solid #555;
    margin: 2em 0;
}

/* выделения */
.highlight-red {
    color: #ff5555;
}

.highlight-dim {
    color: #888;
}

/* Кнопка назад */
#backButton {
    display: inline-block;
    margin: 50px auto;
    padding: 8px 20px;
    color: #888;
    background: transparent;
    border: none;
    border-bottom: 1px solid #555;
    text-decoration: none;
    font-style: italic;
    transition: 0.3s;
}

#backButton:hover {
    color: #bbb;
    border-bottom-color: #999;
}

/* Canvas для пепла */
#ashCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}