/* CSS Document */
body {
	background: url("../img/laurasSunLight.jpg") center center fixed;
	background-size: cover;
}
div.wrapper {
	margin: auto;
}
nav {
	max-height: 20vh;
	background-color: #300D0D;
	color: beige;
	font-size: 8vh;
	text-align: center;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	margin: auto;
	max-width: 90vw;
}
div.content {
	padding-bottom: 2.5rem;
}
footer {
	max-height: 14vh;
	color: beige;
	text-align: center;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	position: fixed;
	bottom: 10vh;
}
p {
	background-color: rgba(48,13,13,0.75);
	color:beige;
	max-width: 80%;
	margin: auto;
	margin-top: 2vh;
	margin-bottom: 20vh;
}
h1{
	color: beige;
}
h2{
	color: beige;
}
a{
	color: aquamarine;
}
a:visited{
	color: darkcyan;
}
/* Dropdown Button */
.dropbtn {
	background-color: #300D0D;
	color: beige;
	padding: 1vh;
	border: none;
	font-size: 3vh;
	width: 80vw;
	text-align: left;
	max-height: 5vh;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
	position: relative;
	display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: beige;
	min-width: 30vw;
	z-index: 1;
	right: 0;
	font-size: 2vh;
	margin: 0;
	padding: 0;
	bottom: 5vh;
}
/* Links inside the dropdown */
.dropdown-content a {
	color: black;
	text-decoration: none;
	display: block;
	min-height: 3vh;
	margin: 1vh;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
	background-color: #C9C99C;
	margin: none;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
	display: block;
}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
	background-color: #D1731E;
}
@media only screen and (min-width: 768px) {
	div.wrapper{
		width: 80%;
	}
	nav {
		width: 100%;
	}
	footer {
		width: 80%;
		bottom: 5vh;
		text-align: center;
		padding: auto;
	}
	.dropdown {
		text-align: center;
	}
	.dropbtn {
		width: 15vw;
		margin: 0 auto;
	}
	.dropdown-content {
		min-width: 15vw;
	}
	p{
	}
}
