html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    background: #fafafa;
    color: #111;
}

/* Заголовок */
header h1 {
    text-align: center;
    margin: 20px 0;
    font-size: 2rem;
    color: #ff9800;
}

/* Контент по центру, подвал внизу */
main.container {
    text-align: center;
    padding: 40px;
}

/* Текст под заголовком */
.info-text {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.5;
}

/* Кнопка "Назад" */
.btn-back {
    display: inline-block;
    background: #ff9800;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.95em;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-back:hover {
    background: #e68a00;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(230, 138, 0, 0.35);
}

/* Подвал */
footer {
    text-align: center;
    padding: 15px;
    background: #f5f5f5;
    border-top: 1px solid #ddd;
    font-size: 0.9em;
}