*{
   box-sizing: border-box;
}

html, body{
    height: 100%;
}
body{
   font-size: 13px;
   line-height: 1.5;
   font-family: Verdana, Geneva, Tahoma, sans-serif;
   color: black;
}

#wrapper{
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
}

.center{
    text-align: center;
}
i{
    color:grey;
}

.background-recipe{
    background: url("./images/apple-pie.jpg") no-repeat;
    background-position: center;
    background-size: cover; 
    height: 420px;
}

h1{
    font-size: 6em;
    color: white;
    text-align: center;
    line-height: 420px;
}


.recipe-content{
    width: 100%;
    margin: 70px auto;
    max-width: 800px;
}

.recipe-text{
    margin: 0 auto;
    padding: 0 10px;
}
section>.recipe-text p{
    font-size: 1.5em; 
}

.icon-list-recipe{
    margin-top: 40px;
    margin-bottom: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid grey;
}

.icon-list-recipe ul li {
    display: inline-block;
    font-size: 1.2em;
}

.icon-list-recipe ul li span{
    padding: 0 10px;
}

.steps-list h2, .list-direction h2{
    font-size: 2em;
    margin-bottom: 20px;
}

.steps-list ul li{
    position: relative;
    padding-left: 10px;
    margin-left: 10px;
}
.steps-list ul li:before{
   content: "-";
   position: absolute;
   left: 0;
}

.icon-list-time ul {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 40px 0px;
    border-bottom: 1px solid grey;
    padding-bottom: 40px;
  
}

.icon-list-time ul li {
   padding: 0 20px;
   position: relative;
}

.icon-list-time h4{
    font-weight: 600;
    color: grey;
}
.icon-list-time ul li:not(:first-child, :last-child)::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 50px;
    top: -7px;
    left: 0;
    border-right: 1px solid #a8a8a8;
}

.icon-list-time ul span{
    color: grey;
    padding-left: 3px;
}
.icon-list-time ul span:nth-child(2){
    padding-right: 3px;
}

.list-direction ol{
    padding: 0 10px;
}
.list-direction ol li{
    padding: 2px 0;
}

