/* ----------------------------------------- */
/*  Start-Screen                             */
/* ----------------------------------------- */

body
{
	font-family: "Trebuchet MS", "Segoe UI", Segoe, "Helvetica Neue", Helvetica, "Lucida Grande", Tahoma, Verdana, Arial, Sans-Serif;
	font-weight: bold;
	text-rendering: optimizeLegibility;
	text-align: center;
	font-weight: bold;
	color: #fff;
}

body::after
{
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;

	background: #003863;	
	background: -webkit-linear-gradient(top, #0062a6 0%, #003863 100%);
	background:    -moz-linear-gradient(top, #0062a6 0%, #003863 100%);
	background:     -ms-linear-gradient(top, #0062a6 0%, #003863 100%);
	background:      -o-linear-gradient(top, #0062a6 0%, #003863 100%);
	background:         linear-gradient(top, #0062a6 0%, #003863 100%);
}

div#startscreen_logo
{
	margin: 0 auto;
	width: 100%;
	height: 200px;
	background-image: url("../grafik/mm_logo.svg");
	background-size: 50% auto;
	background-position: center;
	background-repeat: no-repeat;
}

div#startscreen_titel
{
	margin: 50px 0;
	font-size: 30px;
}

div#startscreen_beschreibung
{
	margin: 25px;
	padding: 0 50px;
}

div#startscreen_copyright
{
	padding: 0 50px;
}

#Warnung
{
	color: #FF0000;
}

input[type=button]
{
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	cursor: pointer;
	width: 75%;
	
	color: #fff;
	padding: 20px;
	margin: 50px;
	
	border: 1px solid #003863;
	border-radius: 4px;
	
	background: #0062a6;
	background: -webkit-linear-gradient(top, #0062a6 0%, #003863 100%);
	background:    -moz-linear-gradient(top, #0062a6 0%, #003863 100%);
	background:     -ms-linear-gradient(top, #0062a6 0%, #003863 100%);
	background:      -o-linear-gradient(top, #0062a6 0%, #003863 100%);
	background:         linear-gradient(top, #0062a6 0%, #003863 100%);
}