@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Young+Serif&display=swap');
:root{
--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%);
}

body{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--stone100);
    font-family: Outfit, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: wrap column;
}

p{
    font-size: 16px;
}

h1{
    font-family: Young Serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 40px;
    font-weight: 400;
    margin: 10px 0 -10px 0;
}

.preperationField{
    background-color: var(--rose50);
    padding: 5px 20px 5px 20px;
}

ul li{
    padding: 5px;
}

h2{
    font-family: Young Serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--brown800);
}

h3{
    color: var(--rose800);
}

hr{
    margin: 20px 0 20px 0;
    opacity: 0.5;
}

.mainBlock{
    position: relative;
    background-color: var(--white);
    width: 800px;
    overflow: hidden;
    border-radius: 20px;
    height: auto;
    margin: 100px 0 100px 0;
    box-sizing: border-box;
}

.allText{
    padding: 10px 40px 10px 40px;
}

td {
    border-bottom: 1px solid #ddd;
    height: 40px;
    padding-left: 35px;
}

table tr td:nth-child(2){
    transform: translateX(-50px);
}

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

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

tr td:nth-child(2) {
    color: var(--brown800);
    font-weight: bold;
}

.mainImage{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: wrap column;
}

.mainImage>img{
    width: 90%;
    margin: 5% 0 0 0;
    border-radius: 15px;
}
.ingredients>ul>li{
    padding-left: 15px;
    padding-bottom: 10px;
}
.ingredients>ul{
    transform: translateX(-18px);
}
.instructions>ol{
    transform: translateX(-18px);
}
.instructions>ol>li{
    padding-left: 15px;
    padding-bottom: 10px;
}
ol li::marker{
    color: var(--brown800);
    font-weight: bolder;
}
ul li::marker{
    color: var(--brown800);
}
@media (max-width: 800px){
    .mainBlock{
        width: 100%;
        min-height: 100vh;
        margin: 0;
        font-size: 1rem;
    }
}

@media (max-width: 400px){
    .titleText>h1{
        font-size: 30px;
    }
}

body{
    color: var(--stone600);
}
h1{
    color: black;
}