﻿@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Monoton&display=swap');

*{
    font-family: Verdana;
    font-size:12px;
    text-decoration: none;
    margin: 0;
    padding: 0;
    color:#000;
}
body,html{
    background-color:#FFF;
}
a{
    color:inherit;
    font-family: inherit;
    font-size: inherit;
}
header{
    /*background-color: #333333;*/
    border-bottom:3px solid #1DB2F5;
    height:150px;
    width:100vW;
    position: fixed;
    top: 0px;
    left: 0px;
    box-shadow: 0px 0px 8px #333333;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(top,  rgba(255,255,255,0.8) 0%, rgba(241,241,241,1) 35%, rgba(225,225,225,1) 63%, rgba(246,246,246,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(255,255,255,0.8) 0%,rgba(241,241,241,1) 35%,rgba(225,225,225,1) 63%,rgba(246,246,246,1) 100%);
    background: linear-gradient(to bottom,  rgba(255,255,255,0.8) 0%,rgba(241,241,241,1) 35%,rgba(225,225,225,1) 63%,rgba(246,246,246,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0 );
}
#hamburger{
    display:none;
}
/*
header:before{
    content:"";
    height:150px;
    width:100vW;
    position: absolute;
    top: 0px;
    left: 0px;
    display:block;
    background-image:url(../images/bg.png);
    background-size:cover;
    background-position: -100px center;
}
*/
header > a{
    position:absolute;
    top:40px;
    left:50px;
    color:#333333;
}
header h1{
    font-family: 'Monoton', cursive;
    font-size:3rem;
    font-weight:normal;
    color:#333333;
    letter-spacing:2px;
    line-height:2.4rem;
}
header h1 span{
    width:100%;
    display:block;
    text-align:center;
    font-family: 'Monoton', cursive;
    font-size:0.7em;
    font-weight:normal;
    color:#808080;
    letter-spacing:6px;
}
header nav{
    border-top:1px solid #1DB2F5;
    position:absolute;
    bottom:0px;
    left:0px;
    width:100%;
    color:#333333;
    height:30px;
    line-height:30px;
    font-family: 'Monoton', cursive;
    text-align: center;
    font-size:1.4rem;
}
header nav a{
    display:inline-block;
    padding:0px 12px;
    font-family: 'Audiowide', cursive;
    transition:all 1s;
    text-transform: uppercase;
}
header nav a:after{
    transition:all 0.4s;
    content: "";
    width:0%;
    height:2px;
    background-color:#fff;
    display:block;
    position:relative;
    top:-3px;
}
header nav a:hover:after{
    width:100%;
}

footer{
    background-color: #333333;
    border-top:3px solid #1DB2F5;
    height:40px;
    width:100vW;
    position: fixed;
    bottom: 0px;
    left: 0px;
    box-shadow: 0px 0px 8px #333333;
    
    background: rgb(255,255,255);
    background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(241,241,241,1) 35%, rgba(225,225,225,1) 63%, rgba(246,246,246,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(241,241,241,1) 35%,rgba(225,225,225,1) 63%,rgba(246,246,246,1) 100%);
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(241,241,241,1) 35%,rgba(225,225,225,1) 63%,rgba(246,246,246,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0 );

}
footer nav{
    display:block;
    color:#333333;
    height:40px;
    line-height:40px;
    font-family: 'Audiowide', cursive;
    text-align: right;
    padding:0px 20px;
}
footer nav a{
    display:inline-block;
    padding:0px 12px;
    transition:all 1s;
    text-transform: uppercase;
}
footer nav a:first-of-type{
    float:left;
}
section{
    width:85%;
    margin:auto;
    margin-top:170px;
    margin-bottom:60px;
    min-height:calc(100vH - 295px);
    border:1px solid #1DB2F5;
    padding:20px 30px;
    border-radius:20px;
    border-top-left-radius:0px;
    border-bottom-right-radius:0px;

    background: -moz-linear-gradient(top,  rgba(247,247,247,1) 0%, rgba(247,247,247,1) 1%, rgba(255,255,255,0.72) 62%, rgba(186,205,221,0.54) 100%);
    background: -webkit-linear-gradient(top,  rgba(247,247,247,1) 0%,rgba(247,247,247,1) 1%,rgba(255,255,255,0.72) 62%,rgba(186,205,221,0.54) 100%);
    background: linear-gradient(to bottom,  rgba(247,247,247,1) 0%,rgba(247,247,247,1) 1%,rgba(255,255,255,0.72) 62%,rgba(186,205,221,0.54) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#8abacddd',GradientType=0 );

}
section > h2:first-of-type,article > h2:first-of-type{
    display:none;
}
section ul{
    margin-left:20px;
}
form{
    width:80vW;
    margin:auto;
    line-height:30px;
    margin-top:20px;
}
form article{
    display:table;
    width:100%;
    
}
form article aside{
    display:table-cell;
    width:50%;
}
div.row{
    display:block;
    clear:both;
    width:90%;
    padding-left:10%;
}
div.row label{
    margin-right:20px;
}
label{
    display:inline-block;
    min-width:80px;
    vertical-align:top;
}
label.m{
    display:none;
}
select,input[type=range]{
    width:98%;
    padding:3px 6px;
    border-radius:5px;
}
form article aside:first-of-type select{
    width:calc(98% - 90px);    
}
input[type=range]{
    width:85%;
    vertical-align: middle;
  -webkit-appearance: none;
  margin: 10px 0;
}


input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 19px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000;
  background: #d2cbcb;
  border-radius: 14px;
  border: 0px solid #000000;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 1px #fff;
  border: 0px solid #fff;
  height: 15px;
  width: 28px;
  border-radius: 15px;
  background: #1DB2F5;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: 2px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #d2cbcb;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 19px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000;
  background: #d2cbcb;
  border-radius: 14px;
  border: 0px solid #000000;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 1px #fff;
  border: 0px solid #fff;
  height: 15px;
  width: 28px;
  border-radius: 15px;
  background: #BF3F3F;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 19px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #d2cbcb;
  border: 0px solid #000000;
  border-radius: 28px;
  box-shadow: 0px 0px 0px #000000;
}
input[type=range]::-ms-fill-upper {
  background: #d2cbcb;
  border: 0px solid #000000;
  border-radius: 28px;
  box-shadow: 0px 0px 0px #000000;
}
input[type=range]::-ms-thumb {
  box-shadow: 0px 0px 1px #fff;
  border: 0px solid #fff;
  height: 15px;
  width: 28px;
  border-radius: 15px;
  background: #BF3F3F;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #d2cbcb;
}
input[type=range]:focus::-ms-fill-upper {
  background: #d2cbcb;
}
input,textarea{
    width:450px;
    padding:3px 6px;
    border-radius:5px;
    border:1px solid #C0C0C0;
}
textarea{
    resize: none;
    margin-top:6px;
}
input[type=checkbox],input[type=submit],input[type=reset]{
    width:auto;
}
input[type=submit],input[type=reset]{
    min-width:130px;
}
input[name=check]{
    display:none;
}
.fehler{
    color:#FF6600;
}
ins{
    text-decoration: underline;
}