* {
    box-sizing: border-box;
    margin: 0;
    font-size: 62.5%;
    font-family: "inter", sans-serif;
}

/*Font-size --------------------------------------------*/
h1 {
    color: #EEA43C;
    font-size: 4.4rem;
    font-weight: 400;
    letter-spacing: 2px;
    word-wrap: break-word;
    margin-bottom: 2rem;
}
h2 {
    font-size: 3.5rem;
    color:#EEA43C;
    font-weight: 400;
}
h3 {
    font-size: 2rem;
    color:#EAC899;
    font-weight: 800;
    text-decoration: underline;
}
p, a, li {
    font-size: 1.6rem;
    color: #EAC899;
}
a {
    text-decoration: none;
}

/*general elements --------------------------------------------*/
body {
    background-color: #241E14;
}
main {
    padding: 2rem;
}
img {
    max-width: 25rem;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
}


/*header-----------------------------------------------*/
header {
    width: 100%;
    height: 10rem;
    display: flex;
    align-items: center;
    padding: 2rem;
    background-color: #181106;
}
header i {
    font-size: 4rem;
    color:#EAC899;
}

/*------------------------------------------------------*/
.meat_container, .dish_container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}
.meat_container section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.dish {
    max-width: 25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


/*-------------------------------------------------*/
.recipe_h1 {
    margin: 0;
}
.recipe_info, .recipe_ingredients, .recipe_instructions {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}
.recipe_info {
    gap: 1rem;
    grid-area: info;
}
.recipe_ingredients {
    gap: 2rem;
    grid-area: ingredients;
}
.recipe_instructions {
    gap: 2rem;
    grid-area: instructions;
}
.recipe_info a {
    text-decoration: underline;
    word-wrap: break-word;
}


/*Media Queries-----------------------------------------*/
@media screen and (min-width: 1000px) {
    .recipe_main {
        display: grid;
        grid-template-rows: 0.5fr 1fr;
        grid-template-columns: 0.6fr 1fr;
        grid-template-areas: 
            "info info"
            "ingredients instructions"
    }
    .recipe_instructions {
        padding-left: 2rem;
    }
    .recipe_info {
        max-width: 35rem;
    }
}