body {
    background-color: #575656;
}

.site_body {
    min-width: 300px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
/*
header {
    //
}
*/
.head_name {
    background-color: #c84353;
    color: white;
    height: 80px;
    text-align: center;
}


/* Контейнер меню — центрирует содержимое */
.menu-container {
    display: flex;
    justify-content: center; /* центрирование по горизонтали */
    align-items: center;   /* выравнивание по вертикали */
    background: linear-gradient(#c4dde2, #52a6b2);
    color: black;
    margin-top: 15px;
    height: 40px;
    padding: 15px 0;        /* отступы сверху/снизу */
}

/* Стили для кнопок меню */
.menu-button {
    display: flex;           /* позволяет центрировать текст внутри кнопки */
    justify-content: center;
    align-items: center;
    padding: 12px 12px;    /* внутренние отступы — делает кликабельную область больше */
    background-color: #52a6b2; /* цвет фона кнопки */
    color: white;           /* цвет текста */
    text-decoration: none;   /* убираем подчёркивание */
    border-radius: 6px;   /* скругление углов */
    font-weight: bold;      /* жирный шрифт */
    font-size: 18px;      /* размер шрифта */
    transition: all 0.3s ease; /* плавные переходы */
    margin: 0 10px;       /* отступы между кнопками */
    min-width: 120px;     /* минимальная ширина кнопки */
    height: 40px;         /* фиксированная высота */
    text-align: center;    /* выравнивание текста по центру */
    cursor: pointer;        /* курсор-указатель */
}

/* Эффект при наведении */
.menu-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Эффект при нажатии */
.menu-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Активная кнопка (текущая страница) */
.menu-button.active {
    background-color: #2c3e50;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page_name {
    color: white;
    height: 120px;
    font-size: 20pt;
}
.page_name img {
    width: 100px;
    margin-right: 40px;
    margin-top: -10px;
    float: left;
}
.page_name h2 {
    margin-top: 20px;
}

/* Содержимое сайта */
.content {
    min-height: 500px;
    background-color: white;
    padding: 20px;
    font-size: large;
}
.content p {
    text-indent: 2em; /* отступ первой строки в пикселях */
    text-align: justify;
    font-size: 16pt;
}

/* Футер */
.footer {
    height: 100px;
    background: linear-gradient(#52a6b2, #c4dde2);
    text-align: center;
    font-size: 16pt;
    font-weight: bold;
    margin-top: 10px;
    padding-top: 10px;
}