body {
    background-color: #DAF7F6;
    color: #3B3B3B;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    line-height: 16px;
}

/** HEADER **/

header {
    background-color: white;
    text-align: center;
}


h1 {
    display: inline-block;
    padding: 40px 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #F16059;
    text-transform: uppercase;
}

header img {
    margin-right: 15px;
}

main {
    width: 1000px;
    margin: 0 auto;
}


/**  Add recipe images **/

.card {
    margin: 25px 0;
    overflow: auto;
}

.image {
    float: left;
    width: 500px;
    height: 550px;
}

.recipe {
    float: left;
    padding: 20px;
    width: 500px;
    height: 550px;
    background-color: white;
    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;
}


/** Stylng recipe times **/

.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 #3B3B3B solid;
    overflow: auto;
}

.time div {
	float: left;
	padding-left: 6px;
	width: 33.3333%;
	box-sizing: border-box;
	text-transform: uppercase;
}

.time .cook {
    border-left: 1px solid #3B3B3B;
    border-right: 1px solid #3B3B3B;
}

.time img {
    margin-right: 5px;
    vertical-align: middle;
    width: 15px;
    height: auto;
}

.time-details {
    display: inline-block;
}

.time strong {
    font-family: 'Montserrat', sans-serif;
}

/** Create multiple columns **/

.columns {
    overflow: auto;
}

.directions {
    float: left;
    width: 240px;
}

.ingredients {
    float: left;
    width: 205px;
    margin-right: 15px;
}

.recipe h3 {
    padding: 6px;
    border-top: 1px solid #3B3B3B;
    border-bottom: 1px solid #3B3B3B;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: #F16059;
}

.ingredients ul {
    padding-left: 15px;
    line-height: 25px;
    list-style-type: square;
}

.directions ol {
    padding-left: 15px;
    line-height: 22px;
}