/* Общий стиль */
body {
    font-family: Georgia, serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* Контейнер статьи */
.article-container {
    max-width: 700px;
    background: white;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Заголовок */
.article-container h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #222;
}

/* Автор */
.article-author {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

/* Изображение */
.article-container img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Контент */
.article-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

/* Кнопка назад */
.back-button {
    display: block;
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
    color: #007bff;
    text-decoration: none;
}

.back-button:hover {
    text-decoration: underline;
}

blockquote {
    background: #f8f8f8;
    padding: 10px;
    border-left: 4px solid #ccc;
    margin: 10px 0;
}

a {
    color: blue;
    text-decoration: underline;
}

a:hover {
    color: darkblue;
}

