﻿html, body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	height: 100%;	/* This and "html, body" is necessary to use <!DOCTYPE html ...> */
	font-size: small;
	background-color: #2d2d2d;
	text-align: left;
}

input[type=text] {
	border: 0px;
	height: 2.5em;
	width: 100%;
	color: #bbb;
	background-color: #515151;
	margin: 1.5em 0em 0.5em 0em;
	text-indent: 1em;
	/* padding-left: 5%; */
	/* This rule doesn't work on FF: */
}

input[type=button] {
	color: white;
	background-color: #48a50f;	
	text-align: center;
	border-radius: 0.5em;
	border: 0;	
	padding: 0;
	margin: 0;
	height: 3em;
	width: 49.27%;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 0.9em;
}

input[type=button]:hover {
	background-color: white;	
	color: #48a50f;
}

a {
	font-weight: bold;
	text-decoration: none;
	color: #515151;
}

a:hover {
	color: #717171;
}

noscript {
	background-color: red;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 0.4em 0em 0.4em 0em;
	position: absolute;
	z-index: 1;
	font-weight: bold;
}

p {
	margin: 0;
	padding: 0;
}

.upper-half {
	height: 70%;
	background: #48a50f;
	font-weight: bold;
	position: relative;
}

.upper-half-container {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding-bottom: 1em;
}

.lower-half {
	background-color: #2d2d2d;
	color: #515151;
}

.upper-half-content, .lower-half-content {
	margin: 0 auto;
	width: 21em;
}

.logo {
	background-image: url(images/toro.svg);
	background-repeat: no-repeat;
	background-position: center bottom;
	height: 20em;
}

.title {
	font-size: 6em;
	color: white;
	line-height: 1em;
	vertical-align: bottom;
}

.subtitle {
	font-size: 2em;
	color: #2d2d2d;
	line-height: 0.9em;
}

.comingsoon {
	font-size: 2em;
	color: white;
	line-height: 0.9em;
	font-weight: bold;
	margin: 0.2em 0em 0em 0em;
}

.link {
	padding-top: 1em;
}

@media screen and (max-height: 560px) {
	.logo {
		height: 12em;
	}
}

@media screen and (max-width: 320px) and (max-height: 479px) {
	.upper-half {
		height: 50%;
	}
	.upper-half-content {
		width: 16em;
	}
	.lower-half-content  {
		width: 20em;
	}
	.logo {
		display: none;
	}
	.title {
		font-size: 2em;
	}
	.subtitle, .comingsoon {
		font-size: 1.7em;
	}
	.lower-half-content {
		font-size: 0.8em;
	}
	input[type=text] {
		font-size: 1em;
		height: 2em;
		margin: 0.5em 0em 0.5em 0em;
	}
	input[type=button] {
		width: 100%;
		margin-bottom: 0.5em;
	}
	.link {
		display: none;
	}
}


@media screen and (max-width: 210px) {
	.title {
		font-size: 1.3em;
	}
	.subtitle, .comingsoon {
		font-size: 1em;
	}
	.upper-half-content  {
		width: 8em;
	}
	.lower-half-content{
		width: 10em;
	}
	input[type=button] {
		height: 2em;
	}
}