body {
	background-color: black;
	text-align: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center; 
	transition: 0.2s;
}

#imgblock {
	margin-top: 20px;
	margin-bottom: 40px;
	transition: 0.5s;
	overflow: hidden;
}

#imgblock img {
    height: 100%;
}

#links {
	display: block;
	margin: auto;
}

.container {
	text-align: center;
	margin-bottom: 25px;
}

.btncont {
	display: flex;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	transition: 0.5s;
	overflow: hidden;
}

.btncont.box {
	max-width: 330px;
}

.btncont a {
	padding: 20px 20px 20px 20px;
	font-size: 30px;
	font-family: 'Rubik', sans-serif;
	white-space: nowrap;
	color: white;
	text-decoration: none;
	-webkit-user-select:none; 
	-moz-user-select:none; 
	user-select: none;
	transition: 0.5s;
}

.box {
	background-color: #767676;
	cursor: pointer;
}

a.box {
	padding-bottom: 50px;
}

.btncont a.box {
	padding: 20px 60px 20px 60px;
}

a.nobox {
	pointer-events: none;
}

.btninfo {
	background-color: white;
	border: 1px dotted black;
	display: none;
}

.infobutton {
	display: none;
	margin-left: auto;
	margin-right: auto;
}

#adm {
	background-color: #ccc;
}

.info {
	display: block;
}

#adminpanel {
	display: flex;
}

#admbutton {
	color: rgba(255,255,255,0.1);
	-webkit-user-select: none; 
	-moz-user-select: none;
	cursor: normal;
	position: fixed;
	bottom: 0;
	right: 0;
}

.panel {
	border: 1px dotted black;
	margin-left: auto;
	margin-right: auto;
	padding: 5px;
}

.slider::-webkit-slider-thumb {
    background: #4CAF50;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    background: #4CAF50;
    cursor: pointer;
}

.loginbox {
  border: 3px solid #f1f1f1;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-content {
  background-color: #fefefe;
  margin: 5px auto;
  border: 1px solid #888;
  width: 80%;
}

.close {
  position: absolute;
  right: 25px;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)}
  to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}

@media (max-width: 600px), (max-device-width: 480px) and (orientation: landscape) {

	#imgblock {
		margin-bottom: 30px;
	}
	
	.box {
		border-radius: 25px;
	}

	.btncont.box {
		max-width: 200px;
		margin-bottom: 15px;
	}
	
	.btncont a, .btncont a.box {
		padding: 13px 30px 17px 30px;
		font-size: 20px;
		
		/* Box ist nur so breit wie der Text */
		/*
		padding-bottom: 30px;
		*/
	}
}