@media only screen and (min-width: 768px) {
    /*-----container and image "adjust" to not being full width -----*/
    .container {
    margin: auto;
    width: 85%;
  }
  article {
    width: 100%;
   
  }
	/* visited link */
a:visited {
  color: white;
}

/* mouse over link */
a:hover {
  color: darkred;
}

/* selected link */
a:active {
  color: #550015;
}
  figure#topImage {
    width: 85%;
    margin: 20px auto;
  }
  /*figure#topImage img {
    width: 100%;
  }*/
  article img {
    float: left;
    margin: 0px 20px;
    width: 250px;
  }
}