
body {
    font-family: system-ui, Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 8px;
}
h1, h2 {
    text-align: center;
}
h1 {
    color: #d9534f;
    margin-bottom: 40px;
}
h2 {
    color: #5bc0de;
    margin-top: 60px;
    margin-bottom: 20px;
}
section {
    margin-bottom: 60px;
}
section img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
}
section p {
    text-align: justify;
    max-width: 700px; /* ширина текста чуть станет уже, комфортнее читать */
    margin: 0 auto 15px auto; /* центрируем по середине */
}
footer {
    margin-top: 40px;
}
footer h3 {
    text-align: center;
}
footer ol {
    padding-left: 20px;
}
a {
    color: #5bc0de;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #d9534f;
    text-decoration: underline;
}

.sources li:hover {
    background-color: #fafafa;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


@media (max-width: 600px) {
    .container {
        padding: 8px;
    }
    h1 {
        font-size: 1.4em;
    }
    h2 {
        font-size: 1.1em;
    }
}