body {
	font-family: 'Montserrat' , sans-serif;
	font-weight: 400;
	color: #fff;
	margin: 30px;
	padding:40px;
	background-color: rgb(152,58,42);
}

h1 {
	font-size: 3em;
}

h2 {
	font-size: 2em;
}

nav a {
	font-weight: 300;
	letter-spacing: .1em;
	text-decoration: none;
	color: rgb(152,58,42);
	display: inline-block;
	margin: 1em;
	border-bottom: 2px solid;
}

a:link {
	color: #fff;
}
a:visited {
	color: lightgray;
}
a:hover {
	color: #9A7D78;
}
a:active {
	color: #CB5F4D;
}


.site-header {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	margin: 30px;
}

.branding strong {
	display: block;
}

header .branding {
	font-size: 75px;
	font-style: italic;
	position: left;
	font-weight: 800;
}

.brading {
	font-family: 'Montserrat', sans-serif;
	font-size: 2em;
	letter-spacing: normal;
}

.logo-home {
	float: right;
}

hr {
 color: rgb(152,58,42);
}

.phome {
	padding-bottom: 500px;
}

/* Dropdown button */

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; 
  margin: 0; 
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: gray;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: rgba(152,58,42,.3);
}

.dropdown:hover .dropdown-content {
  display: block;
}