
body {
	width: 99vw;
	height: 90vh;
	background: linear-gradient(to top right, #8058A7, #9979B9);
	background-size: 100%;
}



h1 {
	color: black;
	text-align: center;
	font-family: helvetica;
	letter-spacing: 1px;
	padding-top: 20px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	font-size: 2vw;
	
}

p {
	color: black;
	background-color: #999;
	text-align: justify;
	font-family: helvetica;
	margin: 25px 50px 50px 50px;
	letter-spacing: 1px;
	font-size: 1.3vw;
	text-indent: 30px;
	border: 3px solid black;
	box-shadow: 5px 5px 10px 2px rgba(0,0,0,.8);
	padding: 20px;
	
}

img {
	box-shadow: 5px 5px 10px 2px rgba(0,0,0,.8);
	height: 25%;
	width: 25%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 25px;
	display: block;
}

.body {
	background-color: lightgray;
	width: 50%;
	margin: auto;
	padding-bottom: 25px;
	box-shadow: 5px 5px 10px 2px rgba(0,0,0,.8);
	

}
	
hr {
	border: 1px solid black;
	width: 50%;
	display: block;
	margin-left: auto;
	margin-right:auto;
}

.navbar {
	text-align: center;
	list-style-type: none;
	margin-left: 25%;
	overflow: hidden;
	width: 50%;
	padding: 0;
	background-color: #000000;
}

a {
	font-family: helvetica;
	color: white;
	display: block;
	padding:20px;
	background-color: #000000;
	text-decoration: none;
	float: left;
}

#current {
	background-color: #555;
}

a:hover {
	background-color: #333;
}
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

.dropdown {
	float: left;
	overflow: hidden;
}

.dropdown .dropbtn {
	font-size: 16px;
	border: none;
	outline: none;
	color: white;
	padding: 20px;
	background-color: inherit;
	font-family: helvetica; /* Important for vertical align on mobile phones */
	margin: 0; /* Important for vertical align on mobile phones */
}

.dropdown:hover {
	background-color: #333;
}

.dropdown:hover .dropdown-content{
	display: block;
}

.dropdown-content a {
	float: none;
	color: white;
	padding: 20px;
	text-decoration: none;
	display: block;
	text-align: left;
}