/*
overlay.css
*/


html {
	background-color: white; 
	padding: 0px;
}
html, body {
	height: 100%;
}

body {
	margin: 0;
}

a:link{
	color: white;
	text-decoration: underline;
	text-decoration-style: none;
}

a:visited{
	color: white;
	text-decoration: underline;
	text-decoration-style: none;
}

a:hover{
	color: white;
	text-decoration: underline;
	text-decoration-style: dotted;
}

#firstblock {
	height: 100%;
	background-color: #40474A;
	text-align: center;
    width: 100%;
        position: relative;
    overflow:hidden;
}

#bgimage {
	position: absolute;
    top:-65%; left:-110%; right: -90%; bottom:-90%;
    margin: auto;
    width: 120%;
}

#textblock{
	background-color: rgba(0, 0, 0, 0.6);
	float: left;
    position: absolute;
    top: 85%; left: 0%; right: 0%; bottom: 5%;
	overflow:hidden;
	padding: 5px;
	color: #FFFFFF;
	font-weight: bold;
	border-radius: 2%;
}

#textblocktitle{
	font-size:1.5vw;
	margin: 15px;
}

#textblocktext{
	font-size:1vw;
	margin: 5px;
	text-align: center;
}

#textblockquote{
	font-style: italic;
	font-size:1.2vw;
	margin-top: 10px;
	text-align: center;
}

#divider{
    border-top:3px dotted #444;
    width: 80%;
    margin-left: 10%;
}