html {
	position: relative;
	min-height: 100%;
}

body { 
	background: #8CA3E3;
	margin: 0 0 150px;
}
	
@font-face {
    font-family: sans-serif;
}


#header {
	font-family: Arial;
	position: absolute;
	text-align: center;
    left: 0;
    right: 0;
    height: 70px;
    top: 0;
    background-color: white;
}
#header_text{
	position: absolute;
	font-family: sans-serif;
	font-size: 40px;
	top: 15px;
	left: 10%;
	color: #315CD5;
}

#main {
    position: relative;
	line-height: 1.5;
	font-size: 20px;
	top: 70px;
	left: 10%;
	width: 80%;
	margin-bottom: 170px;
}

#footer {
	position:absolute; 
	bottom:0px; 
	height:100px; 
	right: 0px;
	left: 0px;
	background:#315CD5;
}

#footer_text{
	position: absolute;
	font-family: sans-serif;
	font-size: 40px;
	top: 15px;
	left: 10%;
	color: #FFFFFF;
}

#top_gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	height: 14px;
	background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 75%,rgba(0,0,0,0) 100%);
}

#verticalLine {
	border-left: thick solid #315CD5;
}

/* Button */
.button {
	position: relative;
	top: -5px;
	font-size: 20px;
	padding: 10px 20px 10px 20px;
	color: #8CA3E3;
	background: #FFFFFF;
	text-decoration: none;
}

.button:hover {
	background: #315CD5;
	color: #FFFFFF;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.dropbtn {
	
	position: relative;
	top: -5px;
	font-size: 20px;
	padding: 10px 20px 10px 20px;
	min-width: 150px;
	color: #8CA3E3;
	background: #FFFFFF;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	top: 29px;
	min-width: 150px;
	position: absolute;
	background-color: #f9f9f9;
	font-size: 15px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	
}

.dropdown-content a:hover {
	background-color: #8CA3E3;
	color: #FFFFFF;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown:hover .dropbtn {
	background: #315CD5;
	color: #FFFFFF;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}