* {
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
}


body {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}


/*Header*/
header {
    width: 100%;
}

/*Content*/

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 auto;
    margin: auto auto 50px;
    max-width: 1320px;
    width: 100%;
    gap: 50px;
    font-family: 'Inter', sans-serif;
}


.recipe__img {
    width: 100%;
    display: flex;
    justify-content: center;
}

.recipe__item img {
    max-width: 250px;
    max-height: 250px;
}

/*Footer*/
