@media only screen and (min-width: 1200px) {
  /*-----columns now are side by side -----*/
  article {
    width: 50%;
    float: left;
    display: inline;
  }
  figure#topImage {
    width: 1200px;
    margin: 20px auto;
  }
  .container {
    width: 1200px;
	margin: auto;
  }
  body {
    background-color: #3d66ee;
    font-family: 'Open Sans', sans-serif;
    font-family: 'Roboto', sans-serif;
  }
  h1 {
    font-weight: 900;
    font-size: 30px;
    color: #f9f4d0;
  }
  h3 {
    font-weight: 500;
    color: #f9f4d0;
    text-decoration-line: underline;
  }
  p {
    color: #f9f4d0;
  }
  header {
    background-color: #f9f4d0;
	color: #3d66ee; 
	font-family: 'Open Sans', sans-serif;
    font-family: 'Roboto', sans-serif;
	font-weight: 900; 
	font-size: 23px;
  }
  footer {
	background-color: #f9f4d0;
	color: #3d66ee; 
	font-family: 'Open Sans', sans-serif;
    font-family: 'Roboto', sans-serif;
	font-weight: 900; 
	font-size: 23px;
	}
  /*unvisited link*/
  a:link { 
	color: #3ee0ee;
	}
  /*visited link*/
  a:visited { 
	color: #3ee0ee;
	}
  /*mouse over link*/
  a:hover {
	color: #f5175a;
	}
  /*selected link*/ 
  a:active {
	color: #f5175a;
	}
	
  /*figure#topImage img {
    width: 100%;
  }*/
}