
html{
    width: 100%;
    height: 100%;

}


body{
    width: 100%;
    height: 100%;
    background-color: #efefef;
    color: #333333;
    --max-size: 16;
    --min-size: 12;
    font-size: var(--responsive-size);
    font-family:  "Lucida Sans Unicode", "Lucida Grande", "sans-serif", "Icofont";
    padding: 0;
    margin: 0;

}


body.bg-center {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: url(https://webtyper.de/images/wt-bg-img.jpg);
    -o-background-size: 100% 100%;
    -moz-background-size:  100% 100%;
    -webkit-background-size:  100% 100%;
    background-size:  100% 100%;
    background-attachment: fixed;
    padding:0;
    margin:0;
}

div.formular {
    position: relative;
    display: inline-block;
    width: 96%;
    height: auto;
    font-family: Verdana, Geneva, sans-serif;
    --max-size: 14;
    --min-size: 10;
    font-size: var(--responsive-size);
    background-color: #efefef;
    border-radius: 6px;
    padding: 0;
    margin: 0;

}

div.formular h2{
    position: relative;
    display: block;
    width: 90%;
    height: auto;
    --max-size: 20;
    --min-size: 16;
    font-size: var(--responsive-size);
    padding: 8px 1rem;
    margin: 0 auto;
}

div.formular h2.border-bottom{
    border-bottom: 1px solid #333333;
}

div.formular h2.bg-grey{
    background-color: #aaaaaa;
}

div.formular h2.bg-blue{
    background-color: #0066FF;
    color: #fefefe;
}

div.formular blockquote{
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    flex-wrap: wrap;
    min-height: 10rem;
    width: 90%;
    height: auto;
    padding: 2rem 0 1rem;
    margin: 0 auto;
}

div.formular blockquote.center{
    justify-content: center;
    text-align: center;
    gap: 1rem;
}

div.formular blockquote p{
    width: auto;
}

div.formular footer {
    position: relative;
    display: inline-flex;
    justify-content: space-around;
    align-items:center;
    width: 100%;
    min-height: 1rem;
    height: auto;
}
div.formular footer a{
    color: #333;
    text-decoration: none;
    cursor: pointer;

}
div.formular footer img{
    max-width: 150px;
    height:auto;
}

