@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Young+Serif&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    min-width: 96vw;
}

div#container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    background-color: white;
}

header > img {
    width: 100%;
}

main {
    margin: 30px;
}

main h1 {
    font-size: 2.5rem;
    font-family: "Young Serif", serif;
    font-weight: 500;
    line-height: 40px;
    color: hsl(24, 5%, 18%);
    margin-top: 15px;
}

main p {
    font-size: 16px;
}

section#descricao-da-receita > p {
    margin-top: 20px;
    margin-bottom: 20px;
    color: hsl(30, 10%, 34%);
    font-weight: 400;
    line-height: 20px;
    font-family: "Outfit", sans-serif;
}

section#tempo-de-preparacao {
    background-color: hsla(332, 51%, 32%, 0.1);
    border-radius: 10px;
    height: 190px;
}

section#tempo-de-preparacao > h2 {
    padding: 25px;
    color: hsl(332, 51%, 32%);
    font-family: "Outfit", sans-serif;
    font-weight: 600;
}

section#tempo-de-preparacao > ul {
    margin-left: 45px;
    font-family: "Outfit", sans-serif;
}

section#tempo-de-preparacao > ul > li {
    margin-bottom: 15px;
    color: hsl(30, 10%, 34%);
}

section#tempo-de-preparacao > ul > li::marker {
    color: hsl(332, 51%, 32%);
}

section#ingredientes {
    margin-top: 20px;
    margin-bottom: 20px;
}

section#ingredientes > h2 {
    color: hsl(14, 45%, 36%);
    font-weight: 400;
    font-family: "Young Serif", serif;
}

section#ingredientes > ul {
    margin: 20px;
}

section#ingredientes > ul > li {
    margin-bottom: 15px;
    color: hsl(30, 10%, 34%);
    font-family: "Outfit", sans-serif;
    font-weight: 600;
}

section#ingredientes > ul > li::marker {
    color: hsl(332, 51%, 32%);
}

div.linha-horizontal {
    border: 1px solid hsl(30, 18%, 87%);
}

section#instrucoes {
    margin-top: 20px;
}

section#instrucoes > h2 {
    font-family: "Young Serif", serif;
    color: hsl(14, 45%, 36%);
    font-weight: 400;
}

section#instrucoes > ol {
    margin: 20px;
}

section#instrucoes > ol > li {
    color: hsl(30, 10%, 34%);
    font-family: "Outfit", sans-serif;
    margin-bottom: 10px;
}

section#instrucoes > ol > li::marker {
    color: hsl(14, 45%, 36%);
    font-family: "Outfit", sans-serif;
    font-weight: 600;
}

section#tabela-nutricional {
    margin-top: 20px;
}

section#tabela-nutricional > h2 {
    font-family: "Young Serif", serif;
    color: hsl(14, 45%, 36%);
    font-weight: 400;
}

section#tabela-nutricional > p {
    margin-top: 15px;
    font-family: "Outfit", sans-serif;
    color: hsl(30, 10%, 34%);
    font-weight: 500;
}

section#tabela-nutricional > table {
    border-collapse: collapse;
    margin-top: 20px;
    width: 100%;
}

td {
    border-bottom: 1px solid hsl(30, 54%, 90%);
    padding: 10px;
}

td.categorias {
    color: hsl(30, 10%, 34%);
    font-family: "Outfit", sans-serif;
}

td.numeros {
    color: hsl(14, 45%, 36%);
    font-family: "Outfit", sans-serif;
    font-weight: 600;
}

.footer {
    font-family: "outfit", sans-serif;
    font-size: 10px;
    margin-top: 10px;
    text-align: center;
}

.footer a {
    color: hsl(228, 45%, 44%);
    text-decoration: none;
}

.footer a:hover, .footer a:focus {
    text-decoration: underline;
}