@charset "utf-8";
/* CSS Document */

header {
    padding: 50px;
    background-image: url(../images/chickenwrap.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

body{
    background-color: black;
}

article {
    font-size: 18px;
    padding: 10px;
    background-color: tan;
    
   
}

h2{
    text-align: center;
    text-decoration: underline;
   
}

h3{
 text-decoration: dotted;
}

img {
    padding-top: 5%;
    display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

li{
    padding-left: 10%;
}

#intro{
    text-align: center;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}

#dir{
    text-decoration-color: red;
}

#ingred {
    text-decoration-color: white;
}

#nutri {
    text-decoration-color: green;
}



#recipeTitle {
    text-align: center;
    text-decoration-line: underline;
    text-decoration-style: wavy;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}



#ingredients {
    
    width: 33.3%;
    height: 570px;
    float: left;
    background-color: green;
    border-radius: 50px;
   
}

#directions {
    width: 33.4%;
    height: 570px;
    float: left;
    background-color: white;
    border-radius: 50px;
   
}

#nutrition {
    
    text-align: center;
    width: 33.3%;
    height: 570px;
    float: left;
    background-color: red;
    border-radius: 50px;
    
}

ul {
    line-height: 4;
}

ol{
    line-height: 2;
}

footer {
    text-align: center;
    display: block;
    clear: both;
    padding: 25px;
    border-style: outset;
    background-color: grey;
}