main {
    padding: 20px;
    text-align: center;
}

.recipe-list {
    background-color: #FDFAF6;
    padding: 20px;
    border-radius: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.recipe-list h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    color: #5B3A29;
    margin-bottom: 20px;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.recipe-preview {
    background-color: #FFF;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.recipe-preview:hover {
    transform: translateY(-5px);
}

.recipe-preview h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #5B3A29;
    margin-bottom: 10px;
}

.recipe-preview img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.recipe-preview button {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    background-color: transparent;
    border: none;
    color: #E8C8A5;
    text-decoration: none;
}

.recipe-preview button:hover {
    color: #5B3A29;
}

/* Responsive */
@media (max-width: 768px) {
    .recipe-list {
        padding: 15px;
    }

    .recipe-grid {
        grid-template-columns: 1fr;
    }

    .recipe-preview img {
        height: 120px;
    }

    .recipe-preview h3 {
        font-size: 16px;
    }
}