*{
	box-sizing: border-box;
}

body{
	width: 100%;
	display: flex;
	justify-content: center;
	background-image: url("../images/background.jpg");
	background-attachment: fixed;
	font-family: 'Lobster', cursive;
}

.container{
	width: 77%;
	background-color: #f7f3f4;
	font-family: 'Lobster', cursive;
}

.home{
	height: 225px;
	justify-content: center;
	background-image: linear-gradient(rgba(180,142,147,1), rgb(247,243,244,1));
}

.home h2, .contacts h2{
	text-align: center;
	margin: 60px;
	font-size: 281%;
	color: #895d5f;
}

.contacts{
	height: 225px;
	justify-content: center;
	background-image: linear-gradient(rgba(247,243,244,1), rgb(180,142,147,1));
}

.contacts p{
	text-align: center;
	margin: 30px;
	font-size: 156%;
	color: #f9f6f7;
}


	/* HORIZONTAL MENU */

.nav{
	font-size: 156%;
	justify-content: center;
	padding: 15px;
}

.nav ul{
	list-style-type: none;
	text-align: center;
}

.nav li{
	display: inline-block;
	margin: 0 14px 0 14px;
}

.nav a:link{
	color: #f9f6f7;
	text-decoration: none;
}

.nav a:visited{
	color: #f9f6f7;
	text-decoration: none;
}

.nav a:hover{
	color: #895d5f;
	text-decoration: none;
}

.gallery{
	display: flex;
	flex-wrap: wrap;
}

.gallery img{
	flex: auto;
	width: 250px;
	margin: .5vw;
}