* {
  	box-sizing: border-box;
  	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
}
body {
  	background-color: #828282;
	margin: 0 15px;
}
/* Logo */
.logo {
	position: relative;
	left: 0;
	top: 60px;
	right: 0;
	margin: auto;
	position: absolute;
	top: 140px;
}
/* Loginbutton Startpage */
.button{
	  background-color: #008CBA; /* Blue */
	  color: white;
	  padding: 15px 32px;
	  text-align: center;
	  /*text-decoration: none;*/
	  font-size: 16px;
	  /*cursor: pointer;*/
	  width: 10rem;
		margin-right: 1rem;
		border: 2px solid #008CBA;
		border-radius: 4px;
		font-family: Arial;
}

/* Registerbutton Startpage */

.button2 {background-color: #f44336; /* Red */
		color: white;
		padding: 15px 32px;
		text-align: center;
		/*text-decoration: none;*/
		font-size: 16px;
		font-family: Arial;
		/*cursor: pointer;*/
		width: 10rem;
		border: 2px solid #f44336;
		border-radius: 4px;
		margin-left: 1rem;
}
/* Backbutton */
.topbutton1{
	  position:absolute;
	  left :15%;
	  top  :1%;
	  background-color: #008CBA; /* Blue */
	  color: white;
	  padding: 15px 32px;
	  text-align: center;
	  /*text-decoration: none;*/
	  font-size: 16px;
	  /*cursor: pointer;*/
	  width: 10rem;
		border: 2px solid #008CBA;
		border-radius: 4px;
		font-family: Arial;
}
/* Link to Login/Register Button & Logout Button */
.topbutton2 {
		position: absolute;
		right :15%;
		top	  :1%;
		background-color: #f44336; /* Red */
		color: white;
		padding: 15px;
		text-align: center;
		/*text-decoration: none;*/
		font-size: 16px;
		font-family: Arial;
		/*cursor: pointer;*/
		width: 10rem;
		border: 2px solid #f44336;
		border-radius: 4px;

}
/*Self explanatory*/
.playbutton {
		position: absolute;
		top	  :20%;
		left  :43%;
		background-color: #3ed643; /* Green */
		color: white;
		padding: 40px;
		text-align: center;
		/*text-decoration: none;*/
		font-size: 32px;
		font-family: Arial;
		font-weight: bold;
		/*cursor: pointer;*/
		max-width: 40%;
		border: 2px solid #3ed643;
		border-radius: 4px;
}

/*Nochmal Button*/
.button3 {
	background-color: #25fc7f; /* Blue */
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	font-size: 22px;
	cursor: pointer;
	/*width: 40px;*/
	margin: center;
	border: 2px solid #25fc7f;
	font-family: Arial;
	border-radius: 4px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
}

.buttonlogout {
	background-color: #f44336; /* Blue */
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	font-size: 22px;
	border: 2px solid #f44336;
	font-family: Arial;
	border-radius: 4px;
	margin: 5px 5px auto auto;
	display:flex;

}


.button:hover, .button2:hover, .topbutton1:hover, .topbutton2:hover, .playbutton:hover, .buttonlogout:hover, .button3:hover {
border: 2px solid #FFFFFF;
}



.register {
  	width: 400px;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 100px auto;
}
.register h1 {
  	text-align: center;
  	color: #5b6574;
  	font-size: 24px;
  	padding: 20px 0 20px 0;
  	border-bottom: 1px solid #dee0e4;
}
.register form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 20px;
}
.register form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
 	height: 50px;
  	background-color: #3274d6;
  	color: #ffffff;
}
.register form input[type="password"], .register form input[type="text"] {
  	width: 310px;
  	height: 50px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
	font-size: 16px;
}
.register form input[type="submit"] {
  	width: 100%;
  	padding: 15px;
  	margin-top: 20px;
  	background-color: #3274d6;
 	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.register form input[type="submit"]:hover {
	background-color: #2868c7;
  	transition: background-color 0.2s;
}
.login {
  	width: 400px;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 100px auto;
}
.login h1 {
  	text-align: center;
  	color: #5b6574;
  	font-size: 24px;
  	padding: 20px 0 20px 0;
  	border-bottom: 1px solid #dee0e4;
}
.login form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 20px;
}
.login form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
  	height: 50px;
  	background-color: #3274d6;
  	color: #ffffff;
}
.login form input[type="password"], .login form input[type="text"] {
  	width: 310px;
  	height: 50px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
	font-size: 16px;
}
.login form input[type="submit"] {
  	width: 100%;
  	padding: 15px;
 	margin-top: 20px;
  	background-color: #3274d6;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.login form input[type="submit"]:hover {
	background-color: #2868c7;
  	transition: background-color 0.2s;
}

/* Navigation Buttons on the Top of the Webpage */

body.loggedin {
	background-color: #828282;
}

/*User Information on Homepage */


.welcome {

	padding: 30px;

	color:#25fc7f;
	font-family:Arial;
	font-size: 30px;
	text-shadow: -4px 0 black, 0 4px black;
	font-weight: bold;
	position: absolute;
	left: 3%;
	top: 19%
}

.userscore {

	padding: 30px;
	/*margin: 20px;*/
	color:#25fc7f;
	font-family:Arial;
	font-size:30px;
	text-shadow: -4px 0 black, 0 4px black;
	font-weight: bold;
	position: absolute;
	left:3%;
	top:30%;

}

tr:nth-child(even) td { background: #EEE; }
tr:nth-child(odd) td { background: #FDFDFD; }

.highscores {

	border:2px;
	background-color:#25fc7f;
	position:absolute;
	top: 28%;
	left: 78%;
	max-width: 10%

}

.highscoretablehead {
	color:#25fc7f;
	font-family:Arial;
	font-size:30px;
	text-shadow: -4px 0 black, 0 4px black, 2px 0 black, 0 -2px black;
	position:absolute;
	top: 19% ;
	left: 81%;
	width:20%;

}
