html{
	background-color: silver;
	line-height: 1.5rem ;
	font-size: 16;

}

body{
	max-width: 1100px;
	margin: 0 auto;
	padding: 1rem;
}

main{
	margin-top: 1rem;
}

header{
	height: 500px;
	background-image:url("images/hero-image.png");
	background-size: cover;
	background-color: ghostwhite;
	display: flex;
  align-items: center;
  justify-content: center;
  font-family: Oswald;
  
}

h1{ 
	display: block;
	background-color: ghostwhite;
	border: 1px solid black;
	padding: 1rem ;

 }

 h2, h3{
 	font-family: Oswald;
 }

section{ 
	background-color: ghostwhite;
	padding: 1rem;
	margin-bottom: 1rem;
 }

 p{
 	font-family:Raleway ;
 } 

   footer{
  	text-align: center;
  }

.soup{ 
 	background-image: url(images/tomato.jpg);
 	background-size: cover;
 	background-position: right;
 	height: 300px;
  }

 @media (min-width: 700px){
 	header{ 
 	height: 500px;  }

 	section {
 		margin: 0;
 	}

 	main {
 		display: grid;
 		grid-template-columns: 1fr 1fr;
		grid-gap: 1rem;
 	}

 	.soup{
 		height: auto ;
 	}
 }

 @font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/oswald-v49-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('fonts/oswald-v49-latin-regular.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/raleway-v28-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('fonts/raleway-v28-latin-regular.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}


