/* Google fonts */
@import url("https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100..900;1,100..900&family=Poppins:wght@400;700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Young+Serif&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Overpass:ital,wght@0,100..900;1,100..900&family=Poppins:wght@400;700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Young+Serif&display=swap");

*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
}

body {
  background-color: hsl(30, 54%, 90%);
  font-family: "Outfit";
  color: hsl(30, 10%, 34%);
  font-weight: normal;
}

.container {
  max-width: 700px;
  min-width: 300px;
  background-color: hsl(0, 0%, 100%);
  margin: 4rem auto;
  border-radius: 15px;
  padding: 25px;
}

.top-img {
  width: 100%;
  max-width: 650px;
  border-radius: 10px;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
}

p {
  line-height: 25px;
}

/* Prep time styling */

.prep-time {
  background-color: hsl(330, 100%, 98%);
  padding: 1rem;
  border-radius: 15px;
}

.prep-title {
  color: hsl(332, 51%, 32%);
  font-size: 18px;
  font-weight: 600;
}

/* span styling */
.bolded {
  font-weight: 600;
}

/* headings */
h2 {
  color: hsl(14, 45%, 36%);
  font-family: "Young Serif", Poppins;
  font-weight: normal;
}

h1 {
  font-family: "Young Serif", Poppins;
  font-weight: normal;
  color: hsl(24, 5%, 18%);
}

/* hr */

hr {
  background-color: hsl(30, 18%, 87%);
}

/* lists styling */

ul,
ol {
  padding-left: 0;
  margin-left: 0;
}

li {
  margin: 0.5rem 1rem;
  padding-left: 0.5rem;
  line-height: 1.8rem;
}

/* table sytling */

table {
  width: 100%;
  border-collapse: collapse;
}

tr {
  border-bottom: 1px solid hsl(30, 18%, 87%);
  text-align: left;
}
td {
  padding: 0.8rem;
}

tr:last-of-type {
  border: none;
}

.nutri-value {
  color: hsl(14, 45%, 36%);
  font-weight: bold;
  text-align: left;
}
