@charset "utf8";
@font-face {
    font-family: 'righteous';
    font-style: normal;
    font-weight: normal;
    src: local('Righteous-Regular'), url('Righteous-Regular.woff2') format('woff2');
}

*{
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size:14px;
    color:#000;
    margin:0;
    padding:0;
    text-decoration: none;
    box-sizing: border-box;
}

a{
    cursor:pointer;
    color:inherit;
    font-size:inherit;
    font-weight:inherit;
}
ul,ol{
    padding-left:25px;
}

header{
    width: 100%;
    height:120px;
    background-color:#EAE6E6;
    border-bottom:1px solid #646464;
    position: fixed;
    top:0px;
    left:0px;
    z-index:100;
}
header .icon-menu{
    display:none;
}
header h1{
    font-family: righteous;
    font-size:4rem;
    color:#706E6E;
    display:inline-block;
    margin-left:5%;
    margin-top:20px;
}
header h2{
    font-family: righteous;
    font-size:1.4rem;
    color:#ADA6A6;
    text-shadow:2px 2px 3px #fff;
    display:block;
    margin-left:5.3%;
    letter-spacing: 1.6px;
    display:none;
}
body > menu{
    width: 100%;
    height:40px;
    background-color:#ADA6A6;
    border-bottom:1px solid #000;
    position: fixed;
    top:120px;
    left:0px;
    z-index:100;
    text-align: center;
    line-height: 40px;
}
body > menu li{
    display:inline-block;
    padding:0px 20px;
    font-weight:bold;
    transition: all 0.7s;
}
body > menu li.mlink{
    display:none;
}
body > menu li:hover,body > menu li.aktiv{
    background-color: #646464;
    color:#efefef;
}
main{
    width: 95%;
    margin:auto;
}
main > section{
    background:#f9f9f9;
    padding:15px 20px;
    border:1px solid #000;
    border-radius:8px;
    height:calc(100vH - 220px);
    overflow:auto;
    margin-bottom:30px;
}
main > section:first-of-type{
    margin-top: 170px;
}
main > section:last-of-type{
    margin-bottom:50px;
}
main > section > h1{
    font-family: righteous;
    font-size:1.6rem;
    color:#706E6E;
    margin-bottom:9px;
}
main > section article h1,.h2{
    font-family: righteous;
    font-size:1.3rem;
    color:#706E6E;
    margin-bottom:9px;
}
article.grid24{
    display:grid;
    gap:20px;
    grid-template-columns:33% 1fr;
}
article.grid11{
    display:grid;
    gap:20px;
    grid-template-columns:1fr 1fr;
}
article.grid42{
    display:grid;
    gap:20px;
    grid-template-columns:1fr 33%;
}

footer{
    width: 100%;
    height:30px;
    background-color:#ADA6A6;
    border-top:1px solid #646464;
    position: fixed;
    bottom:0px;
    left:0px;
    z-index:100;
    line-height:30px;
    text-align:right;
}

footer li{
    display:inline-block;
    padding-right: 20px;
    font-size:0.8rem;
}


img{
    max-width:100%;
    max-height:365px;
    box-shadow:4px 4px 4px #ADA6A6;
    display:block;
    margin:auto;
}
.icon{
    font-size:1.2rem;
    font-family: inherit;
}
.hide{
    display:none;
}




/* ------------------------- [+] FORM ------------------------------ */
form{
    margin-right:20px;
    line-height:34px;
}
form > label{
    vertical-align:top;
    display:inline-block;
    width:130px;
}
form > input,form > textarea{
    display:inline-block;
    width:350px;
    padding:3px 5px;
    border-radius:5px;
    border:1px solid #C0C0C0;
    background-color:rgba(255,255,255,0.6);
}
form > textarea{
    margin-top:4px;
}
form > input:focus,form > textarea:focus{
    background-color:rgba(255,255,255,1);
}
form .bt{
    width:167px;
    background-color:rgba(255,255,255,1);
}
input[name="check"]{
    display:none;
}
.fehler{
    color:red;
}
/* ------------------------- [-] FORM ------------------------------ */



/* ===== [+] Scrollbar CSS ===== */
  * {
    scrollbar-width: thin;
    scrollbar-color: #cdd5d4 #f8f7f7;
  }

  *::-webkit-scrollbar {
    width: 18px;
  }

  *::-webkit-scrollbar-track {
    background: #f8f7f7;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #cdd5d4;
    border-radius: 18px;
    border: 3px solid #808080;
  }
/* ===== [-] Scrollbar CSS ===== */