
body, h1, h2, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #f7f5f0; 
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column; 
    min-height: 100vh; 
}

.navbar {
    background-color: #333; 
    color: #fff;
    padding: 20px;
    text-align: center;
    border-bottom: 4px solid #333; 
}

.navbar h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.navbar nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navbar nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar nav ul li a:hover {
    color: #FFD700; 
}

main {
    flex: 1; 
    padding: 40px 20px;
    text-align: center;
}

.recipe-list h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.recipe-list ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.recipe-list ul li {
    font-size: 18px;
}

.recipe-list ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #333;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.recipe-list ul li a:hover {
    background-color: #333;
    color: #fff;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
    position: relative; 
    bottom: 0;
    width: 100%;
}

footer p {
    font-size: 14px;
}

.dish-list {
    list-style-type: none; 
    padding: 0;
}
  
.dish-item {
    margin-bottom: 15px; 
}