@charset "UTF-8";
/* CSS Document */
	
*
{
	box-sizing: border-box;
}
nav
{
	background-color:#DBDAEA;
	font-family: Gotham, 'Helvetica Neue', Helvetica, Arial, 'sans-serif';
	font-weight: 200;
	color: #896978; 
	font-size: 18px; 
	text-align:center; 
	position:fixed; 
	top: 0; 
	width:100%; 
	border-bottom:2px solid #896978;

}
.nav-item
{
	display:inline-block;
	background-color:#DBDAEA;
	font-size: 24px;
	padding: 20px 130px 5px 130px;
	text-decoration: none;
	
}
.nav-item:hover
{
	text-decoration:none;
	background-color:#896978;
	font-weight: bold;
}
a
{
	text-decoration: none;
	color: #896978;
}

.nav-item:hover a
{
	color:#DBDAEA;
}
@media screen and (max-width: 300px) {
  .nav-item {
    float: none;
    width: 100%;
	padding: 0px ;
	font-size: 18px;
  }
	body
	{
		margin-left: none;
	}
}
body
{
	background-color:#DBDAEA;
	margin-top:100px;
	margin-bottom:50px;
	font-family: "Josefin Sans Regular";

}
h1
{
	font-family: "Bely Display";
	color: #896978;
	padding-left: 200px;
	font-size: 70px; 
	line-height: 1;
}
p
{
	font-family: Gotham, 'Helvetica Neue', Helvetica, Arial, 'sans-serif';
	font-weight: 200;
	line-height: 1; 
	color: #896978;
	padding-left: 200px;
	padding-top: 1px;
	font-size: 50px;
	margin-top: -20px;
}

.button
{
    padding:20px 30px 20px 30px;
	margin-left: 200px;
  	background: #DBDAEA;
	border: 2px solid #896978;
    border-radius: 2px;
    font-family: "Bely Display";
	font-weight: 300;
    font-size: 20px;
    color: #896978; 
    text-decoration: none;
    display: inline-block;  
}
.button:hover
{
	text-decoration:none;
	background-color:#896978;
}
.button:hover a
{
	color:#DBDAEA;
}
h2
{
	font-family: "Bely Display";
	color: #896978;
	padding-left: 200px;
	font-size: 40px; 
	line-height: 3;
}
h3{
	font-family: Gotham, 'Helvetica Neue', Helvetica, Arial, 'sans-serif';
	font-weight: 200;
	line-height: 0; 
	color: #896978;
	padding-top: 1px;
	font-size: 25px;
}
.container
{
	display:flex;
	flex-wrap:wrap;
	margin-left: 170px;
}

.bordered
{
	padding:30px;
	width: 520px;
	border: 2px solid #896978;
	box-sizing:border-box;
	background-color: #DBDAEA;
	border-width: 2px;
	margin-left: 30px;
	margin-bottom: 30px;
	margin-right: 10px;
}
.grid-container 
{
  display: grid;
  flex-wrap: wrap;
}

footer
{
	background-color:#DBDAEA; 
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: 200;
	color: #896978; 
	font-size:18px; 
	text-align: center; 
	padding:4px; 
	position: fixed; 
	bottom:0; 
	width: 100%; 
	border-top: 2px solid #896978;
}