*{
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body, html{
    height: 100%;
    margin: 0;
    background-color: rgb(130, 130, 130);
}

header{
    width: 100%;
}

.titelpic{
    background-image: linear-gradient(to bottom , rgba(0, 0, 0, 0.92), rgba(59, 57, 57, 0.75)), url("./bilder/Hintergrund.png");
    height: 100%;
    position: static;
    top: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

h1{
    position: absolute;
    text-shadow: 3px 3px 4px rgb(37, 37, 37);
    color: rgb(255, 255, 255);
    height: 40%;
    top: 30%;
    text-align: center;
    padding: 0.7em;
    font-size: 5rem;
    width: 100%;
    z-index: 1;
}

h2{
    position: absolute;
    text-shadow: 3px 3px 4px rgb(37, 37, 37);
    color: white;
    height: auto;
    top: 50%;
    text-align: center;
    font-size: 2.5rem;
    left: 5%;
    right: 5%;
    width: 90%;
    z-index: 1;
    margin-top: 1.5em;
    margin-bottom: 1em;
}

article{
    font-size: 1.25em;
}

article p{
    margin-left: 1em;
}

hr{
    visibility: hidden;
}

.box1{
    display: grid;
    grid-template-columns: auto auto;
    gap: 0.1em;
    color: white;
    position: relative;
    width: 80%;
    left: 10%;
    right: 10%;
}

.box2{
    margin: 0.8em;
    margin-bottom: 3.2em;
    padding: 1em;
    font-size: 1.5em;
}

#kontakt a{
    color: white;
}

#kontakt a:hover{
    color: #ff9822;
}

footer{
    position: relative;
    bottom: 0;
    padding: 0.5em;
    width: 100%;
    text-align: center;
    background-color: #252525;
    font-size: 1.2em;
    color: white;
}

footer a{
    padding: 0.25em;
    margin: 0.3em;
    text-decoration: none;
    color: white;
}

footer a:hover{
    font-weight: bold;
    padding: 0.2em;
    background-color: white;
    color: #000000;
    border-radius: 0.25em;
}

@media (max-width: 1350px) {

    .mobile {display: block !important;}
    .no-mobile {display: none !important;}

    h1{
        top: 20%;
        font-size: 4.5em;
    }

    .box1{
        display: block;
    }
}

@media (max-width: 980px) {

    .mobile {display: block !important;}
    .no-mobile {display: none !important;}

    h1{
        font-size: 3em;
        top: 0;
        position: static;
    }

    .titelpic{
        background-image: linear-gradient(to bottom , rgba(0, 0, 0, 0.85), rgba(12, 12, 12, 0.65)), url("./bilder/Hintergrund.png");
        height: 50%;
        position: static;
        top: 0;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
      }

    h2{
        position: static;
        text-shadow: 3px 3px 4px rgb(37, 37, 37);
        color: white;
        text-align: center;
        font-size: 1.6rem;
        margin-top: 1.5em;
        width: 100%;
        padding: 0.5em;
    }

    article{
        font-size: 1em;
    }

    .box1{
        display: block;
    }

    hr{
        width: 100%;
        visibility: visible;
    }

    .box2{
        margin-bottom: 1em;
        border-top: 0.5px solid rgb(85, 84, 84);
    }
}

@media (max-width: 600px){
    .mobile {display: block !important;}
    .no-mobile {display: none !important;}

    h1{
        font-size: 2em;
    }

    article{
        font-size: 0.8em;
    }
}