body{
    color: white;
    margin: 0px;
    padding: 0px;
    font-size: 20px;
}

.reload {
    background-color: Transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    overflow: hidden;
    color: #00fffb;
    font-size: 20px;
}

.reload:hover {
	color: hotpink;
}

.copy {
    background-color: Transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    overflow: hidden;
    color: #00fffb;
    font-size: 20px;
}

.copy:hover {
	color: hotpink;
}

.ueberschrift {
    font-size: 40px;
}

.ueberschrift2 {
    font-size: 20px;
}

a {
    font-size: 20px;
}

/* unvisited link */
a:link {
	color: #00fffb;
}
  
/* visited link */
a:visited {
	color: #00fffb;
}
  
/* mouse over link */
a:hover {
	color: hotpink;
}
  
/* selected link */
a:active {
	color: #00fffb;
}

input[type="checkbox"]{
    height: 0px;
}

label{
    color: #00fffb;
    font-size: 20px; 
}

label:hover{
    color: Hotpink;
}

.input{
	outline: 0;
	border-radius: 10px;
	background: #F2F2F2;
	width: 300px;
	border: 0;
    margin: 0 0 15px;
	padding: 15px;
	box-sizing: border-box;
	font-size: 14px;
}

input:hover{
	background-color: #D3F8F9;
	transition: all 1s ease 0s;
}

input:focus{
	background-color: #D3F8F9;
	transition: all 1s ease 0s;
}

.button{
	text-transform: uppercase;
	outline: 0;
	border-radius: 10px;
	background: #1ADBE5;
	width: 300px;
	border: 0;
    margin: 0 0 15px;
	padding: 15px;
	color: #FFFFFF;
	font-size: 14px;
	cursor: pointer;
}

.button:hover, .form button:active, .form button:focus{
	background-color: #06C5CF;
	transition: all 1s ease 0s;
}

.form .message{
	margin: 15px 0 0;
	color: #B3B3B3;
	font-size: 12px;
}

.form .message a{
	color: #06C5CF;
	text-decoration: none;
}

.Fehler{
	color: red;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
/* Track */
::-webkit-scrollbar-track {
background: #3d3c3a; 
}
   
/* Handle */
::-webkit-scrollbar-thumb {
background: #9e9595a4; 
}
  
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #d6c9c9a4; 
}