/* CSS Document */

* {
	box-sizing: border-box;
}

h1, h2, h3, h4
{
	padding: 0px;
	margin: 0px;	
}

img {
    max-width: 100%;
    height: auto;
}

/* standard shell template */

html, body 
{
	margin: 0;
	padding:0;
	border:0;
	text-size-adjust: none;
	position: relative;
	scroll-behavior: smooth;
}

body
{		
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	background: url(/background.jpg) no-repeat center center #FFF;		
	background-size: cover;
	text-align: center;	
	line-height: 18px;
	color: #000;
	text-size-adjust: none;
	height: 100%;
}

.clear{
	clear:both;
	overflow: hidden;
	display: none;
	height: 0px;			
}

/* redefine */
form 
{
	padding: 0px;
	margin: 0px;
	border: 0px;	
}

a 
{
	color: #302C2D;
	text-decoration: none;
}

a:hover 
{
	text-decoration: underline;	
}

textarea
{
	font-family: 'Montserrat', sans-serif;
	font-size: 100%;
	color: #666;
}

img{
	border: 0;	
}

/* construct */
.wrapper 
{
	float: left;
	width: 100%;
	height: 100vh;
	padding: 0px;
	margin: 0px;
    text-align:  left;
	position: relative;
}

.overlay
{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100vh;
	background: #222222;
	  /* IE 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";

  /* IE 5-7 */
  filter: alpha(opacity=20);

  /* Netscape */
  -moz-opacity: 0.2;

  /* Safari 1.x */
  -khtml-opacity: 0.2;

  /* Good browsers */
  opacity: 0.2;
}

.outerlogo
{
	position: relative;
	width: 600px;
	margin-top: 30vh;
	margin-left: auto;
	margin-right: auto;
}

.logo
{
	float: left;
	width: 100%;
	height: 200px;
}

.logo h1
{
	padding: 0px;
	margin: 0px;
}

.logo h1 a
{
	float: left;
	width: 100%;
	height: 200px;
	background: url(/MainLogo.svg) no-repeat center center;
	background-size: contain;
}

.logo h1 a span
{
	display: none;
}

.main
{
	float: left;
	width: 100%;
	font-size: 20px;
	color: #FFF;
	margin-top: 20px;
	text-align: center;
}

@media (min-width: 320px) and (max-width: 600px)
{
		.outerlogo
		{
			position: relative;
			width: 400px;
			margin-top: 20vh;
			margin-left: auto;
			margin-right: auto;
		}

		.logo
		{
			float: left;
			width: 100%;
			height: 200px;
		}

		.logo h1
		{
			padding: 0px;
			margin: 0px;
		}

		.logo h1 a
		{
			float: left;
			width: 100%;
			height: 200px;
			background: url(/MainLogo.svg) no-repeat center center;
			background-size: contain;
		}
}