/* style.css */
body {
    font-family: 'Georgia', serif; 
    max-width: 800px; 
    margin: 40px auto; /* Центрируем блок */
    padding: 20px;
    background-color: NavajoWhite;
    color: #333;
    line-height: 1.6;
}

header {
    text-align: center;
    border-bottom: 2px dashed #8a7f8d;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

h1 {
    color: #59405c;
}

h2 {
    color: #7a6a7f;
    border-left: 4px solid #b8a1bb;
    padding-left: 10px;
}

img {
    border-radius: 50%; 
    border: 3px solid #8a7f8d;
    display: block;
    margin: 20px auto;
}

a {
    color: #9d5c9a;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #59405c;
    text-decoration: underline;
}

ul {
    list-style-type: square; /* Квадратные маркеры списка */
}

footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.9em;
    color: #777;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}