/* Общие настройки */
* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Заголовки */
.main-header h1 {
    text-align: center;
    background-color: #ffd700;
    color: white;
    padding: 20px;
    font-size: 2em;
}

/* Навигация */
.navigation ul {
    list-style-type: none;
    display: flex;
    justify-content: space-evenly;
    background-color: #ffcc00;
    padding: 10px 0;
}

.navigation a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}

.navigation a:hover {
    background-color: #fff200;
}

/* Основной контент */
section#intro, section#history, section#bliny, section#modern {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    line-height: 1.6;
}

section img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}

/* Подвал */
footer {
    text-align: center;
    background-color: #ffd700;
    color: white;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Списки рецептов */
.recipe h3 {
    margin-top: 20px;
}

.recipe p {
    margin-bottom: 20px;
}