body {
	font-family: 'Lato';
	font-size: 20px;
	font-weight: 300;
	background-color: #14213d;
	color: #c7f9cc;
}

#header {
	position: relative;
	
	margin: 50px auto 0 auto;
}

#header h1 {
	margin: 0;
	padding: 0;
	font-weight: 200;
	font-size: 30px;
}

#header h1 b {
	font-weight: 500;
}

#header img {
	position: absolute;
	top: -5px;
	right: -10px;
	
	width: 60px;
	height: 60px;
	
	transform: rotate(10deg);
	
	border-radius: 10px;
	box-shadow: 0px 0px 30px #ffc8dd;
}


h1 {
	position: relative;
}

h1 .buttons {
	position: absolute;
    
    top: 50%;
	right: 0;
	transform: translateY(-50%);
	
	height: 50px;
}

h1 .buttons .button {
	margin-left: 15px;
}


h2 {
	margin: 0;
	padding: 0;
	font-weight: 400;
	font-size: 25px;
}

h3 {
	margin: 40px 0 0 0;
	padding: 10px 15px;
	font-weight: 400;
	font-size: 28px;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 5px;
}

h4 {
	margin: 20px 0 0 10px;
	font-weight: 500;
	font-size: 25px;
}

h5 {
	margin: 0;
	font-size: 20px;
	font-weight: 500;
}


p {
	margin: 20px 0 0 0;
}

pre {
	display: block;
	padding: 10px;
	max-height: 500px;
	
	font-family: 'ShareTechMono';
	font-size: 15px;
	text-align: left;
	
	overflow: scroll;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.box {
	width: 80%;
	max-width: 100%;
	padding: 20px;
	box-sizing: border-box;
	
	margin: 40px auto 0 auto;
	
	border-radius: 20px;
	background-color: rgba(255, 255, 255, 0.1);
}

.box .border {
	margin-top: 20px;
	padding: 10px;
	
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.box .border p:first-child,
.box .border h1:first-child,
.box .border h2:first-child,
.box .border h3:first-child {
	margin-top: 0;
}

.button {
	position: relative;
	display: inline-block;
	padding: 5px 10px;
	
	border: 1px solid rgba(0, 0, 0, 0.5);
	border-radius: 5px;
	text-decoration: none;
	color: inherit;
}














#footer {
	padding: 50px 0;
	
	text-align: center;
	font-size: 12px;
}






/****************************************************************************************
	Zeilen mit Button
*/

.row {
	position: relative;
	
	height: 50px;
	line-height: 50px;
}

.row:first-child {
	margin-top: 0;
}

.row .button {
	position: absolute;
	right: 0;
	padding-left: 20px;
	padding-top: 0;
	padding-bottom: 0;
}




/****************************************************************************************
	Formulare
*/

input[type=text],
input[type=number],
input[type=tel],
input[type=date],
input[type=email],
input[type=password],
textarea {
	display: block;
	
	width: 100%;
	max-width: 500px;
	height: 50px;
	
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	
	border: none;
	border-radius: 20px;
	outline: none;
	resize: none;
	background-color: rgba(0, 0, 0, 0.3);
	
	font-family: inherit;
	font-size: 20px;
	
	color: white;
}

textarea {
	height: 200px;
}

input::placeholder,
textarea::placeholder {
	color: rgba(255, 255, 255, 0.5);
}