* {
	margin: 0;
	padding: 0;
}

html {
	min-height: 100%;
	position: relative;

}

body {
	color: rgb(255, 255, 255);
	background-color: rgb(255, 255, 255);
	min-height: 600px;
	font: 14px/1.3 'Segoe UI', Arial, sans-serif;
}

#dropbox {
	border: 1px solid rgb(47, 140, 194);
	border-style: dashed;
	border-radius: 8px;
	border-width: 5px;
	position: relative;
	margin: 80px auto 90px;
	min-height: 290px;
	overflow: hidden;
	padding-bottom: 40px;
	width: 990px;
}


#dropbox .message {
	font: condensed 120% sans-serif;
	text-align: center;
	padding-top: 160px;
	display: block;

}

#dropbox:before {
	border-radius: 3px 3px 0 0;
}

#dropbox .preview {
	width: 245px;
	height: 215px;
	float: left;
	margin: 55px 0 0 60px;
	position: relative;
	text-align: center;
}

#dropbox .preview img {
	max-width: 240px;
	max-height: 180px;
	border: 3px solid #fff;
	display: block;
	box-shadow: 0 0 2px #000;
}

#dropbox .imageHolder {
	display: inline-block;
	position: relative;
}

#dropbox .uploaded {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: url('../img/done.png') no-repeat center center rgba(255, 255, 255, 0.5);
	display: none;
}

#dropbox .preview.done .uploaded {
	display: block;
}

#dropbox .progressHolder {
	position: absolute;
	background-color: #252f38;
	height: 12px;
	width: 100%;
	left: 0;
	bottom: 0;
	box-shadow: 0 0 2px #000;
}

#dropbox .progress {
	background-color: #07ad4c;
	position: absolute;
	height: 100%;
	left: 0;
	width: 0;
	box-shadow: 0 0 1px rgba(5, 58, 12, 0.4) inset;
	-moz-transition: 0.25s;
	-webkit-transition: 0.25s;
	-o-transition: 0.25s;
	transition: 0.25s;
}

#dropbox .preview.done .progress {
	width: 100% !important;
}

#text-drop {
	font: condensed 120% sans-serif;
}

.topnav {
	overflow: hidden;
	background-color: #e9e9e9;
}

/* Style the links inside the navigation bar */
.topnav a {
	float: left;
	display: block;
	color: black;
	text-align: center;
	padding: 16px 10px;
	margin: 6px 1px;
	text-decoration: none;
	font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
	background-color: #ddd;
	color: black;
}

/* Style the "active" element to highlight the current page */
.topnav a.active {
	background-color: #2196F3;
	color: white;
}

/* When the screen is less than 600px wide, stack the links and the search field vertically instead of horizontally */
@media screen and (max-width: 600px) {

	.topnav a,
	.topnav input[type=text] {
		float: none;
		display: block;
		text-align: left;
		width: 100%;
		margin: 0;
	}
}

.topnav-right {
	float: right;
}

header {
	position: relative;
	background-color: black;
	height: 75vh;
	min-height: 25rem;
	width: 100%;
	overflow: hidden;
	margin: 100;
}

header video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 0;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

header .container {
	position: relative;
	z-index: 2;
}

header .overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0.5;
	z-index: 1;
}

@media (pointer: coarse) and (hover: none) {
	header {
		background: url('https://source.unsplash.com/XT5OInaElMw/1600x900') black no-repeat center center scroll;
	}

	header video {
		display: none;
	}
}

h1 {
	text-align: center;
	padding: 15px
}

p {
    text-align: justify;
}

.topnav-content {
	padding: 0px 230px
}