/*Initialization*/
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

:root {
  --background-color: hsl(30, 54%, 90%);
  --background-color-card: hsl(0, 0%, 100%);
  --primary-color: hsl(0, 0%, 7%);
  --secondary-color: hsl(0, 0%, 42%);
  --tertiary-color: hsl(14, 45%, 36%);
  --pink-color: hsl(330, 100%, 98%);
}

body {
  background-color: var(--background-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  min-width: 100vw;
}

main {
  background-color: var(--background-color-card);
  max-width: 760px;
  margin: 150px;
  min-width: 375px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px;
  border-radius: 20px;
  gap: 10px;
}

h1 {
  font-family: "Young Serif", serif;
  font-weight: 400;
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 38px;
}

h2 {
  font-family: "Young Serif", serif;
  font-weight: 400;
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 30px;
}

h2 {
  color: var(--tertiary-color);
}

p {
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: hsl(30, 10%, 34%);
}

img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}



ul,
ol {
  margin: 12px;
  color: hsl(30, 10%, 34%);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

ol {
  line-height: 1.4;
}


li {
  margin: 12px;
  color: hsl(30, 10%, 34%);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

li::marker {
  color: var(--tertiary-color);
  font-size: 17px;
  font-weight: 700;
}

table {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  width: 100%;
  border-collapse: collapse;
  margin-top:20px
}

.prep-time {
  font-family: "Roboto", sans-serif;
  margin-top: 25px;
  background-color: var(--pink-color);
  border-radius: 10px;
  padding: 15px;
}

.prep-time ul {
  padding-left: 15px;
}

.prep-time li {
  padding-left: 15px;
}

.prep-time h2{
  font-size: 25px;
  font-weight: 600;
  color: hsl(332, 51%, 32%);
  padding-left: 10px;
  font-family: "Roboto", sans-serif;
}

li {
  padding-left: 15px;
}

td {
  color: hsl(30, 10%, 34%);
  padding: 15px;
  border-bottom: 1px solid hsl(0, 0%, 85%);
}

td:first-child {
  padding-left: 45px;
}

td:last-child {
  font-weight: bold;
  color: var(--tertiary-color);
}

tr:last-child td {
  border-bottom: none;
}

hr {
  border: none;
  height: 1px;
  background-color: hsl(0, 0%, 85%);
  margin: 30px 0;
}

div {
  margin:20px
}

@media (max-width: 375px) {
  main{
    margin: 0px;
    padding: 0px;
  }
  .receipe-card {
    margin: 0px;
    padding: 0 30px 30px 30px;;
  }
  p,
  li,
  td {
    font-size: 15px;
  }
}