/*Built in elements*/

body{ 
    background-color: #ff004c;
    color: #000000;
    font-family: "Geist Mono", monospace;
    font-optical-sizing: auto;
    font-style: normal;
    margin:0px;
}

h1{
    font-family: "Geist Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: 20pt;
    color:black;
}

a {
    font-size: 25pt;
}

h1 span{
    background-color: white;
}

/*Classes and groups*/

.geist-mono-head {
  font-family: "Geist Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 600;
}

#content{
    flex-flow:wrap;
    padding-left: 0%;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 50px;
    margin-top: 10px;
    overflow: hidden;
}


#navigationbar{
    display: flex;
    justify-content: space-between;
    list-style: none; 
    padding-left: 0%;
    margin-top: 10px;
    margin-left:20px ;
    margin-right:20px ;
    margin-bottom: 0px;
    font-size: 14pt;
    background-color: #ff004c;
    position: sticky;
    top: 0;
    z-index: 2;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}  

.navigation{
   color: black;
   margin: 5px;
   font-weight: 800;
  align-content: center;
}

.navigation:hover{
    /* background-color: white; */
    vertical-align: middle;
}

#projectsButton {
    display: block;
    background-image: url("./project_svg1.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: transparent;
}

#projectsButton:hover {
    animation: projects-button 0.65s linear infinite;
}


#aboutButton{
    display: block;
    background-image: url("./about_svg3.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: transparent;
}
#aboutButton:hover {
    animation: about-button 0.65s linear infinite;
}

.navigation_logo{
    color: black;
   margin: 10px;
   font-weight: 800;
}
.navigation_logo:hover{
     animation-name: logohover;
     animation-duration: 0.3s;
     animation-timing-function:ease-in-out ;
     animation-fill-mode: forwards;

} 

.navigation_button{
    display: flex;
    justify-content: space-between;
}

#firsttext{
    display: block;
    margin-left: 30px;
    opacity: 0%;
    color: black;
    font-family: "Geist Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 800;
    font-size: 30pt;
    line-height: 40pt;
    animation-duration: 1s;
    animation-name: textappear;
    animation-timing-function:ease-in-out ;
    animation-fill-mode: forwards;
    
}

#firsttext span{
    background-color: white;
}


#secondtext{
    animation: textappear 1s ease-in-out forwards ;
    animation-delay: 0.15s;
    font-size: 26pt;
    font-weight: 700;
    line-height: 60pt;  
    opacity: 0%;
    margin-left: 30mm;
}

#Überschrift {
    margin-bottom: 30px;
    font-size: 20pt;
    font-weight: 700;
    line-height: 28pt;
}
#Überschrift span{
    background-color: white;
}

 #portraitsgif{
    display: flex;
    margin-top: 30px;
    margin-left: auto;
    margin-right:auto;
    margin-bottom: 350px;
}
.scribble{
    overflow: hidden;
}


#displayed_works{
    display: grid;
    flex-flow: wrap ;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto auto;
    justify-content: center;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}


#displayed_works_boxes{
    border: 3px solid black; 
    width: 400px;
    height:400px;
    overflow: clip;
    margin: 10px;
    background-color: #000000;
}

.displayed_images{
    overflow: hidden;
    z-index: 1; 
    background-image: url("chaos");
}
 
.displayed_images:hover {
  animation: image_hover_zoom 0.5s ease-out forwards;  
}

#displayed_works_name{
     text-align: center;
     font-weight: 500;
}
#more_projects_button{
    margin-left: auto;
    margin-top: 80px;
    margin-bottom: 30pt;
    font-size: 16pt;
    font-family: "Geist Mono", monospace;
    font-optical-sizing: auto; 
    text-align: end;

}
#more_projects_button a{
    color: white;
    background-color: #343434;
    font-size: 25px;
    font-weight: 600;
}

#more_projects_button  > a:hover{
    color:black;
    background-color: white;


} 


#footer{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background-color: #343434;
    height: 150px;
    width: auto;
    overflow: visible;
    margin-top: 10px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}
#footer_links{
    padding-left: 20px;
    padding-bottom: 20px;
}
#footer_links > a{
    color: white;
    text-decoration: none;
    font-size: 12pt;
    line-height: 18pt;
    font-weight: 600;
}

#footer_links > a:hover {
    color: black;
    text-decoration: none;
    background-color: white;
}

#footer_socials{
    padding-left: auto;
    padding-right: 20px;
    padding-bottom: 20px;
    text-align: end;
}

#footer_socials > a{
    color: white;
    text-decoration:none;
    font-size: 12pt;
    line-height: 18pt;
    font-weight: 600;
}

#footer_socials > a:hover{
    color: black;
    background-color: white;
    text-decoration:none;
}


/*projects*/

.project_gallery{
    width: 80%;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px,300px));
    grid-gap: 10px;
    justify-content: center;
}
.project_gallery img{
    width: 100%; 
    cursor: pointer;
    }

.project_gallery_boxes {
    width: 100%;
    border: 3px solid black; 
    overflow: hidden;
    padding: 0;
    background-color: #000000;
}

.project_gallery_boxes img:hover {
    animation: image_hover_zoom 0.5s ease-out forwards
}


/* about */

.about_introduction{
    display: grid;
    justify-content:center;
    grid-template-columns: 100px 450px minmax(300px, 500px) ;
    width: 100%;
    margin-top: 80px;
    gap: 60px;
}


.about_introduction_text {
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 16pt;
    font-weight: 600;
    vertical-align: bottom;
    text-align:left;
    vertical-align: middle;
}

/* .about_introduction_text b:hover{
    cursor: ;

} */

.about_introduction_text span {
    background-color: white;
}

#about_picture img{
    margin-top: 20px;
    width: 100%;
    border: 3px solid black;

}

#skills_and_cv{
    margin-top:300px;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    gap: 20px;
    justify-content: center;
}


.cv {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto;
    width: fit-content;
    border: 3px solid #000000;
}
 #punkte {
    border:1px solid #000000;
    padding: 5mm;
    text-align: end;
    font-weight: 600;
    font-size: 16pt;
 }



/*einzelne Projektseiten*/

#thumbnail{
    display: flex;
    justify-content: center;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 50px;
    margin-bottom: 100px;
}

#thumbnail_video{
    width: 1200px;
    height: 600px;
    border:3px solid #000000;
}

#projektinfos{
    display: flex;
    grid-gap: 50px;
}
#projektbild img{
    width: 100%;
    margin-right: 50px;
    margin-top: 300px;
    border: 3px solid black;
}
#projektschrift{
    width: 100%;
    display: grid;
    flex-flow: wrap;
    margin-left: auto;
    margin-right: 50px;
    align-content: center;
    font-weight: 600;
    justify-content:end;
}

#projekttext{
    font-size: 15pt;
    font-weight: 600;
    vertical-align: middle;
    text-align:left;
    vertical-align: middle;
}

.hashtags_grid{
    display: grid;
    grid-template-columns: minmax(50px, 150px) minmax(50px, 150px) minmax(50px, 150px) minmax(50px, 150px);
    grid-gap: 1px;
    margin-top: 40px;
}


.hashtags {
    text-align: center;
    color: white; ;
    font-size: 1vw;
    margin-top: auto;
    padding: 7px;
    background-color: #343434af;
}

.hashtags_program{
    text-align: center;
    font-size: 1vw;
    margin-top: auto;
    padding: 7px;
    font-weight: 600    ;
    color: black; 
    background-color: rgba(255, 255, 255, 0.658);
}


#project_bts{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 700px));
    width: 100%;
    justify-content: center;
    grid-gap: 10px;
    margin-top: 500px;
    margin-bottom: 150px;
}

#project_bts_boxes{
    border: 3px solid black; 
    overflow: clip;
    background-color: #000000;
}

#project_bts img{
    width: 100%;
}

#project_bts img:hover{
    width: 100%;
    animation: image_hover_zoom 0.5s ease-out forwards;  
}
#page_end_buttons{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-top: 50px;
}

#next_project_button a{
    color: white;
    background-color: #343434;
    font-size: 25px;
    font-weight: 600;
    margin: 30px;
}

#next_project_button  a:hover{
    color:black;
    background-color: white;
}
/* .wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 10px;
  grid-auto-flow: dense;
  margin: auto;
}

.wrapper li.landscape {
  grid-column-end: span 2;
} */




/*Animationen*/
@keyframes textappear{
    0%{
        opacity: 0%;
        transform: translateX(10%);
    }

    100%{
        opacity: 100%;
         transform: translateX(0%);
    }
}

@keyframes logohover{
    0%{
        scale: 100%;
    }
    100%{
        scale:110%
    }

}

@keyframes projects-button {
    0% {
        background-image: url("./project_svg1.svg");
    }

    16% {
        background-image: url("./project_svg1.svg");
    }

    16.666% {
        background-image: url("./project_svg2.svg");
    }

    33% {
        background-image: url("./project_svg2.svg");
    }

    33.332% {
        background-image: url("./project_svg3.svg");
    }
    49%{
        background-image: url("./project_svg3.svg");
    }
    49.999% {
         background-image: url("./project_svg4.svg");
    
    }
    66%{
        background-image: url("./project_svg4.svg")
    }
    66.331% {
        background-image: url("./project_svg5.svg");
    }
    82%{
        background-image: url("./project_svg5.svg");
    }
    82.997%{
        background-image: url("./project_svg6.svg");
    }
    99.99% {
        background-image: url("./project_svg6.svg");
    }
    100%{
         background-image: url("./project_svg1.svg");
    }

}

@keyframes about-button {
    0% {
        background-image: url("./about_svg1.svg");
    }

    16% {
        background-image: url("./about_svg1.svg");
    }

    16.666% {
        background-image: url("./about_svg2.svg");
    }

    33% {
        background-image: url("./about_svg2.svg");
    }

    33.332% {
        background-image: url("./about_svg3.svg");
    }
    49%{
        background-image: url("./about_svg3.svg");
    }
    49.999% {
         background-image: url("./about_svg4.svg");
    
    }
    66%{
        background-image: url("./about_svg4.svg")
    }
    66.331% {
        background-image: url("./about_svg5.svg");
    }
    82%{
        background-image: url("./about_svg5.svg");
    }
    82.997%{
        background-image: url("./about_svg6.svg");
    }
    99.99% {
        background-image: url("./about_svg6.svg");
    }
    100%{
         background-image: url("./about_svg1.svg");
    }

}



/* @keyframes scribble_wiggle{
    0% { transform: rotate(0deg);
    }
   20% { transform: rotate(0deg); 
    }
    25% { transform: rotate(2deg); 
    }
    45% { transform: rotate(2deg); 
    }
    50%{ transform: rotate(-7deg)
    }
    65%{ transform: rotate(0deg)
    }
    85% { transform: rotate(-3deg);
    }
    95% { transform: rotate(-5deg);
    }
    100% { transform: rotate(0deg);
    }
} */

@keyframes image_hover_zoom{
    0%{
        transform: scale(100%);
        opacity: 100%;

    }

    100%{
        transform: scale(120%);
        opacity: 30%;
    }


}