/* Основные стили */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
}

/* Навигация */
.site-nav {
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.site-nav a {
    margin: 0 5px;
    color: #c62828;
    text-decoration: none;
}

/* Карточки рецептов */
.recipe-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.recipe-card {
    display: block;
    width: 180px;
    text-align: center;
    color: #333;
    text-decoration: none;
}

.recipe-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
}