body {

}

.container {
/*    background-color: red; */
    width: 1000px;   
    margin: 0 auto;     /* top & bottom -> 0, left & right -> auto */
}
header {
    background-color: #069;
    padding: 20px;
}
header .container {
    display: flex;
    justify-content: space-between;
}
header a {
    color: white;
    text-decoration: none;
}
header nav a {
    margin: 0 10px;
}

#banner {
    background-image: url(../images/banner1.jpg);
    height: 210px;
    background-position: center;
    background-size: cover;
/*    text-align: center;
    padding: 50px; */
    /* Tricky way of putting "Buy 1 get 1 free" center horz. & vert. */
    display: flex;
    justify-content: center;
    align-items: center;
}
#banner h1 {
    font-size: 36px;
    color: white;
}

#news .container {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
}
#news .item {
    width: 31.33%;      /* 33.3% does not work, find out why */
    padding: 20px 10px;
} 
#news .item h2 {
    font-size: 22px;

}
#news .item img {
    margin: 10px 0;
}
#news .item p {
    color: darkgrey;
    line-height: 150%;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}