/* Savanna's Coffee House Stylesheet */

* {
	box-sizing: border-box;
}

@font-face {
    font-family: 'caviar_dreamsregular';
    src: url('CaviarDreams-webfont.eot');
    src: url('CaviarDreams-webfont.eot?#iefix') format('embedded-opentype'),
         url('CaviarDreams-webfont.woff2') format('woff2'),
         url('CaviarDreams-webfont.woff') format('woff'),
         url('CaviarDreams-webfont.ttf') format('truetype'),
         url('CaviarDreams-webfont.svg#caviar_dreamsregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

body {
	background-image: url("../images/background.jpg");
	background-color: bisque;
	background-size: cover;
	background-attachment: fixed;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 100%;
}

#container {
	background-image: radial-gradient(blanchedalmond, bisque, bisque, navajowhite, wheat);
	background-color: bisque;
	width: 100%;
	max-width: 1000px;
	border: 2px solid black;
	margin-left: auto;
	margin-right: auto;
}

/*Header*/

header {
	flex-grow: 4;
}

.flex_container_header {
	background-image: linear-gradient(120deg, indianred, indianred, indianred, lightcoral, mistyrose, mistyrose);
	background-color: indianred;
	display: flex;
	padding: 0;
}

img.logo {
	display: block;
	height: auto;
	width: 100%;
	max-width: 500px;
}

/*Navigation*/

nav {
	font-family: 'caviar_dreamsregular', Helvetica, sans-serif;
	font-weight: bold;
	font-size: 1.25em;
	flex-grow: 8;
}

.flex_container_img {
	display: flex;
	flex-direction: column;
	margin-right: 20px;
}

.flex_container_nav {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: flex-end;
}

.banner_img {
	display: block;
	height: auto;
	width: 100%;
	max-width: 350px;
	border: 2px ridge darkred;
	border-radius: 15px;
	margin-top: 15px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
}

nav ul {
	list-style-type: none;
	border-top: 2px solid black;
	padding-top: 5px;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;
}

nav ul li {
	margin-left: 10px;
	margin-right: 10px;
}

a:link, a:visited {
	color: darkred;
	text-decoration: none;
}

a:hover, a:active {
	text-decoration: none;
	text-shadow: 2px 2px 2px gray;
}

/*Main Content*/

main {
	padding-left: 25px;
	padding-right: 25px;
}

h1.main {
	font-family: 'caviar_dreamsregular', Helvetica, sans-serif;
	font-weight: normal;
	border-bottom: 2px solid peru;
	padding-top: 2%;
	padding-left: 10%;
	padding-bottom: 5px;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 0;
	margin-bottom: 5px;
	
}

.flex_container {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.flex_container section {
	flex: 1 1 auto;
}

.back_to_top {
	text-align: center;
}

/*Footer*/

.flex_container_footer {
	display: flex;
	flex-direction: row;
}

footer {
	background-color: sandybrown;
	text-align: center;
	border-top: thin solid brown;
	padding: 7px;
}

.copyright {
	flex-grow: 11;
	margin-left: 15%;
}

.social_media {
	flex-grow: 1;
}

.fa {
  	padding: 0 10px;
  	font-size: 30px;
	width: 25%;
  	text-decoration: none;
  	margin: 5px 2px;
}
