/*
Author: Vivian Gölz
Author URI: https://viviangoelz.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/


* {
    margin: 0;
    padding: 0;
    font-family: Inter, Helvetica, Arial, sans-serif;
}

  

html {
    color: var(--c-black);
    background-color: var(--c-white);
    font-size: 18px;
    font-weight: 400;
}


@supports (font-variation-settings: normal) {
    html { font-family: 'Inter var', sans-serif; }
  }


:root {
    --outline: 0px solid rgb(175, 175, 175);
    --c-white: #ffffff;
    --c-black: #0d0d0d;
    --c-red: #F54147;
    --c-blue: #0013FF;
    --c-green: #36AC7C;
}


/*
outlines
*/

.box > *,
.raster > *,
.raster,
* {
    outline: var(--outline);
}


/*
design
*/





.content-full-width {
    width: 100%;
    text-align: center;
    gap: 0;
}



.content {
    margin-inline: auto;
    padding-inline: 50px;
    margin-block: 30px;
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    max-width: fit-content;
    column-gap: 30px;
    max-width: 1000px;
}

.content-text {
    grid-column: 2 / 16;
    margin-block: 10px;
}





h1 {
    font-size: 1rem;
    line-height: 1.3rem;
    font-weight: 500;
    margin-bottom: 0px;
}



p {
   font-size: 1rem; 
   line-height: 1.4rem;
   margin-block: 0.4rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.1s;
}

a:hover {
    opacity: 0.5;
}

h2 {
    font-size: 0.75rem;
    margin-block: 4em 0.4rem;
    font-weight: 500;
}






.logo img {
    width: 200px;
    grid-column-start: 2;
}

/* .logo:hover { 
    filter: invert(19%) sepia(96%) saturate(5609%) hue-rotate(190deg) brightness(100%) contrast(121%);
} */


.content-full-width img {
    width: 100%;
}







/* .foot {
    margin-block: 8rem 10px;
    font-size: smaller;
} */




footer h2 {
    margin-top: 0;
}





/*
impressum
*/

.impressum p {
    font-size: smaller;
}

.impressum .content-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2ch;
    margin-bottom: 100px;
}





.only-mobile {
    display: none;
}

/*
mobile
*/

@media (max-width: 600px) {

    .only-mobile {
        display: block;
    }

    .only-desktop {
        display: none;
    }

    .content {
        display: block;
        padding-inline: 10px;
    }

    .content-text {
        max-width: 100vw;
    }


    h1 {
        margin-bottom: 10px;
    }





    .logo img {
        margin-top: 50px;
        width: 150px;
    }




    .content-full-width img{
        width: 100%;
    }

    /* .impressum .content-text {
        display: block;
        margin-bottom: 100px;
    } */

    /* .box {
        margin-inline: 5% 0;
        margin-top: 80px;
    }

    .raster {
        grid-template-columns: 1fr 1fr;
    }

    h1 {
        padding-right: 5%;
    }

    .termin {
        grid-column: 1 / 3;
        margin-bottom: 0.4em;
    }

    .box:nth-child(1) {
        margin-bottom: 150px;
    } */
}
