/* outfit-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('assets/fonts/outfit-v14-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  src: url('assets/fonts/outfit-v14-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  src: url('assets/fonts/outfit-v14-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* young-serif-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Young Serif';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/young-serif-v2-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
--ff-sans-serif: 'Outfit', Arial, Helvetica, sans-serif;
--ff-serif: 'Young Serif', Georgia, 'Times New Roman', Times, serif;
--White: hsl(0, 0%, 100%);
--Stone100: hsl(30, 54%, 90%);
--Stone150: hsl(30, 18%, 87%);
--Stone600: hsl(30, 10%, 34%);
--Stone900: hsl(24, 5%, 18%);
--Brown800: hsl(14, 45%, 36%);
--Rose800: hsl(332, 51%, 32%);
--Rose50: hsl(330, 100%, 98%);
--color-background: var(--Stone100);
--color-background-recipe: var(--White);
}
*, *::before, *::after {
    box-sizing: border-box;
}
body {
    background-color: var(--color-background);
    font-family: var(--ff-sans-serif);
    margin: 0;
   
}
h1,
h2 {
    font-family: var(--ff-serif);
    line-height: 1;
    margin: 0;
}
h1 {
    font-size: 2.25rem;
    margin-block-end: 20px;
    color: var(--Stone900);

    @media (width >= 68.75rem) {
        font-size: 2.75rem;
        margin-block-end: 24px;
    }
}
h2 {
    font-size: 1.6rem;
    color: var(--Brown800);
}
p,
ul li,
ol li,
th, td {
    color: var(--Stone600);

    @media (width >= 68.75rem) {
        font-size: 1.15rem;
    }
}
ol li::marker {
    color: var(--Brown800);
    font-weight: 700;
}
p {
    font-size: 1rem;
    line-height: 1.3;
    margin-block-end: 20px;

     @media (width >= 68.75rem) {
        font-size: 1.15rem;
        margin-block-end: 24px;
     }
}
ul, ol {
    padding-inline-start: 16px;
    margin-block-end: 0;

    li {
        padding-inline-start: 20px;
        line-height: 2.5;
    }
}

img {
    max-width: 100%;
    height: auto;
}
section {
    padding-block-end: 30px;
}
table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;

    tr {
        border-bottom: 1px solid var(--Stone150);
    }
    tr:last-child{
        border: none;
    }
    th, td {
        padding-block: 14px;
    }

    th {
        padding-inline-start: 30px;
        font-weight: 400;
    }
    td {
        font-weight: 700;
        color: var(--Brown800);
    }
    
}
.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;

    /*1110px*/
    @media (width >= 68.75rem) {
        padding-block: 8rem;
    }
}
.border-bottom {
    border-bottom: 1px solid var(--Stone150);
    margin-block-end: 30px;
}
.recipe {
    background-color: var(--color-background-recipe);

     @media (width >= 68.75rem) {
        max-width: 52rem;
        border-radius: 20px;
        padding: 36px;
     }
}
.recipe__image {
    @media (width >= 68.75rem) {
        margin-block-end: 32px;
        border-radius: 12px;
    }
}
.recipe__text {
    @media(width < 68.75rem) {
        padding: 30px 24px;
    }
}
.prep {
    background-color: var(--Rose50);
    padding: 20px;

    h2 {
        font-family: var(--ff-sans-serif);
        font-size: 1.2rem;
        color: var(--Rose800);
    }
}
