body {
    background-color: #FCFCFC;
}


.content {
    display: flex;
    justify-content: center;
}
#recipe {
    border-width: 1px;
    border-color: #555;
    border-style: solid;
    padding: 5px;
    background-color: #F7F7F7;
    width: 80%;
    border-radius: 3px;
    color: #333;
}


#recipe-img {
    width: 50%;
    float: right;
    padding-left:5px;
}



table tbody tr{
    font-size: 1.25em;
    border-bottom: black 1px solid;
    vertical-align: top;
}

#ingredients tr {
    background-color: #f5f5f5;
    margin: 0px;
}

#ingredients tr:nth-child(2n) {
    background: #D9D9D9;
}

#ingredients td {
    padding-left: 5px;
    padding-right: 5px;
}

#text {
    font-size: 1em;
}

#ingredients {
    border-collapse: collapse;
    border-width: 1px;
    border-color: #555;
    border-style: solid;
}


