@font-face {
	font-family: 'Arial';
	src: url(../fonts/arial_narrow-webfont.woff2);
}
@font-face {
	font-family: 'Times';
	src: url(../fonts/times_new_roman-webfont.woff);
}
@font-face {
	font-family: 'Times Italic';
	src: url(../fonts/times_new_roman_italic-webfont.woff);
}
* {
    margin: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: rgb(4, 0, 255);
    --secondary-color: rgb(222, 0, 230);
}
body {
    background-color: white;
}
::selection {
    background: none;
    color: transparent;
    text-shadow: 0 0 4px white;
}
main {
    scroll-behavior: smooth
}
html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    font-family: "Arial";
    font-size: 13pt;
}
p {
    font-family: "Arial";
    font-size: 13pt;
    color: white;
    line-height: 130%;
}
strong {
    font-family: "Times Italic";
    font-size: 13pt;
}
.logo {
    width: 100%;
    mix-blend-mode: difference;
    grid-column: 1;
}
.logo-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1rem;
}
a {
    text-decoration: none;
}
li {
    list-style: none;
    display: inline;
}
ul {
    padding: 0;
    display: inline;
    color: white;
}
a:hover {
    color: transparent;
    text-shadow: 0 0 4px white;
}
a {
    color: white;
}
.navbar {
    grid-column: 4;
    align-self: flex-start;
    text-align: right;
    mix-blend-mode: difference;
}
.navbarlist {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
}
.menu {
    width: 100vw;
    position: fixed;
    z-index: 100;
    mix-blend-mode: difference;
}
.textarea {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    z-index: 100;
    mix-blend-mode: difference;
}
.statement-container {
    display: block;
    grid-column: 1 / span 2;
}
.statement {
    display: block;
    text-indent: 5%;
}
.textarea-mobile {
    display: none;
}
.statement-container-mobile {
    display: none;
}
.statement-mobile {
    display: none;
}
.home-slide-image {
    display: block;
    height: 100%;
    max-width: 100vw;
    object-fit: contain;
    margin: 0 auto;
}
.home-imagecontainer {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: block;
}
.projekt-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.projekt-container.active {
    opacity: 1;
}
.projektinfo-container {
    position: fixed;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 3;
    gap: 0.5rem;
    z-index: 100;
    mix-blend-mode: difference;
    padding: 1rem;
    bottom: 0;
    right: 0;
}
.hline {
    grid-row: 2;
    grid-column: 1 / span 2;
    border: 0.5px solid white;
}
.projekttitel {

}
.projektjahr {
    text-align: right;
}
.projektartist {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(2, 1fr);
    grid-row: 3;
    grid-column: 1 / span 2;
}
.mobile-menu-line {
    display: block;
    border-top: 1px solid white;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}
.mobilemenu-line {
    width: 100%;
    align-self: center;
}
.home-imagegallery-container {
    display: none;
    width: 50%;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    grid-template-rows: min-content auto;
    position: relative;
    top: 5rem;
    /* left: 50%; */
}
.gallery-grid-view-title {
    position: absolute;
    top: 0;
    left: -100%;
    width: fit-content;
    height: 100%;
    mix-blend-mode: difference;
    padding-left: 1rem;
}
.gallery-grid-view-title-text {
    color: white;
}
.gallery-grid-image {
    display: block;
    width: 100px;
}

.gallery-grid-image:hover {
    width: 150px;
}
.projektinfo-container-grid {
    mix-blend-mode: difference;
    position: relative;
    left: 1rem;
    top: 50%;
    translate: 0 -50%;
}
.projektinfo-container-grid-item {
    display: block;
}
.gallery-img-fullscreen {
    display: block;
    max-width: 50vw;
    height: auto;
    margin: 0 auto;
}
.projectpage-info-container {
    position: fixed;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    top: 50%;
    right: 0;
    padding-right: 1rem;
    padding-left: 0.5rem;
    width: 25vw;
    height: fit-content;
    mix-blend-mode: difference;
}
.projectpage-info-title {
    color: white;
}
.projectpage-info-year {
    color: white;
}

.gallery-img-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.imprint-container {
    position: absolute;
    mix-blend-mode: difference;
    padding: 1rem;
    top: 8rem;
}
.artistlink {
    grid-column: 2;
    text-align: right;
}
@media only screen and (max-width: 800px) {
    .home-imagegallery-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        left: unset;
        top: 14rem;
        width: 90%;
        padding-bottom: 1rem;
    }
    .gallery-img-fullscreen {
        max-width: 100%;
    }
    .projectpage-info-container {
        width: 100%;
    }
    .logo {
        width: 100%;
        mix-blend-mode: difference;
        grid-column: 1 / span 4;
    }
    .navbar {
        grid-column: 1 / span 4;
        align-self: flex-start;
        /* text-align: right; */
        mix-blend-mode: difference;
        width: 100%;
        text-align: unset;
    }
    .ul {
        
    }
    .navbarlist {
        display: flex;
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
    }
    .mobilemenu-line {
        width: 100%;
        align-self: center;
    }
    .imprintlink {
        float: right;
    }
    .mobile-menu-line {
        display: block;
        border-top: 1px solid white;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
    }
    .textarea-mobile {
        display: block;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        padding: 1rem;
        padding-top: 0;
        /* position: fixed; */
        top: 0;
        z-index: 100;
        mix-blend-mode: difference;
    }
    .statement-container-mobile {
        display: block;
        grid-column: 1 / span 4;
    }
    .statement-mobile {
        display: block;
        text-indent: 0;
    }
    .textarea {
        display: none;
    }
    .statement-container {
        display: none;
    }
    .statement {
        display: none;
    }
    .projektinfo-container {
        position: fixed;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* grid-template-rows: 3; */
        gap: 0.5rem;
        z-index: 100;
        mix-blend-mode: difference;
        padding: 1rem;
        bottom: 0;
        right: 0;
        width: 100%;
    }
    .projektartist {
        
        grid-row: 3;
        width: 100%;
        grid-column: 1 / span 2;
    }
    .artistlink {
        float: right;
    }
  }