/***** BASE STYLES *****/
body {
    background: #daf7f6;
    font-family: 'Open Sans', sans-serif;
    color: #3b3b3b;
    font-size: 12px;
    line-height: 16px;
}
header {
    background: #ffffff;
    text-align: center;
    
}
h1 {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    color: #f16059;
    padding: 40px 0;
    margin: 0;
}
header img {
    margin-right: 16px;
}
main {
    width: 1000px;
    margin: 0 auto;
}
.card {
    margin: 25px 0;
    overflow: auto;
}
.image {
    float: left;
    width: 500px;
    height: 550px;
}
.recipe {
    float: left;
    padding: 20px;
    width: 500px;
    height: 550px;
    background: #ffffff;
    box-sizing: border-box;
}
#cookies .image {
    background-image: url("../img/gluten-free-sugar-cookies.jpg");
    background-size: cover;
}
#pesto .image {
    background-image: url("../img/nut-free-pesto.jpg");
    background-size: cover;
}
#salad .image {
    background-image: url("../img/watermelon-salad.jpg");
    background-size: cover;
}
.recipe h2 {
    color: #f16059;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 0; 
    line-height: 29px;
}
.time {
    margin-bottom: 20px;
    border: 1px solid #3b3b3b;
    overflow: auto;
}
.time div {
    float: left;
    padding-left: 6px;
    width: 33.3333%;
    box-sizing: border-box;
    text-transform: uppercase;
}
.time .cook {
    border-width: 0 1px;
    border-style: solid;
    border-color: #3b3b3b;
}
.time-details {
    display: inline-block;
}
.time img {
    margin-right: 5px;
    vertical-align: middle;
    width: 15px;
    height: auto;
}
.time strong {
    font-family: 'Montserrat', sans-serif;
}
.columns {
    overflow: auto;
}
.directions {
    float: left;
    width: 240px;
}
.ingredients {
    float: left;
    width: 205px; 
    margin-right: 10px;
}
.recipe h3 {
    padding: 2px 5px 5px 5px;
    border-top: 1px solid #3b3b3b;
    border-bottom: 1px solid #3b3b3b;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: #f16059;
}
.ingredients ul {
    padding-left: 15px;
    line-height: 24px;
    list-style-type: square;
}
.directions ol {
    padding-left: 15px;
    line-height: 24px;
}