:root {
    --dark: #000;
    --light: #fff;
    --accent: #F2BE55;

    --body-font: Gudea;
    --head-font: Movement;

}

body {
    font-family: var(--body-font), Arial, sans-serif;
    min-height: 100vh;
    margin: 0;

    font-weight: 400;
    font-size: 15px;
}

main {
    background-image: url(../media/img/papier_bg.JPG);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

h1 {
    font-size: 50px;
    font-family: var(--head-font);
    font-weight: 700;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: var(--accent);
}

.video-blend {
    mix-blend-mode: multiply;
}

.full-size {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
}

.half-column {
    width: 50%;
    height: fit-content;
}

.menu {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 90vw;
    height: 100px;
    padding: 10px 0;
}

.nav-link {
    margin-right: 30px;
    font-family: var(--head-font);
    font-size: 20px;
    font-weight: 700;
}



#portrait {
    width: 70%;
    max-height: 500px;
    max-height: 500px
}

.text-wrap {
    padding: 2vw 0;
    width: 70%
}

.flex-right {
    display: flex;
    justify-content: end;
}

.center-element {
    margin: auto
}



.desktop {
    display: block;
    width: 95vw;
    max-width: 1920px;
}

.mobile {
    display: none;
}


.size-20 {
    min-height: 20vh;
}

.size-80 {
    min-height: 80vh;
}

#trennstrich {
    width: 100vw;
    height: 10vw;
    background-image: url(../media/img/trennstrich.png);
    background-size: 80vw;
    background-position: center;
    background-repeat: no-repeat;
}



.contact-wrap {
    display: flex;
    padding-bottom: 10px;
}

.contact-name {
    min-width: 130px;
    font-family: var(--head-font);
    font-weight: 700;
    font-size: 20px;
}

#footer {
    background-color: var(--light);
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.footer-wrap {
    display: flex;
    flex-wrap: wrap;
}

.footer-detail {
    padding-left: 5px;
}

.svg-link img {
    width: 150px;
}

@media (max-width:699px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .half-column {
        width: 80%;
        padding: 0 10%;
    }



    .menu {
        width: 100vw;
    }

    #portrait {
        width: 100%;
    }


    .text-wrap {
        padding: 10%;
        width: 80%;
    }

    .contact-wrap {
        flex-wrap: wrap;
        width: 200px;
    }

    #footer {
        padding: 10% 0;
    }

    .footer-wrap {
        padding: 10px 10% 10px 0;
        justify-content: end;
    }



}
