*{
    margin: 0;
    padding: 0;
}
/* TEXT STYLE */
@font-face{
    font-family: 'ComicSansCustom';
    src:url('ComicSansMS.woff2') format('woff2');
}
.text_style{
    font-family: 'ComicSansCustom';
    color: rgb(149, 141, 129);
    font-size: 18px;
}
.bold{
    font-weight: bold;
}
/* IMG STYLE */
img{
    border-radius: 10px;
}
/* SCREEN WINDOW */
.screen{
    display: flex;
    justify-content: center;
    min-width: 100%;
    min-height: 100vh;
}
/* ALL ABOUT footer FROM TOP TO BUTTOM */
.footer {
    min-width:100%;
    height: 30px;
    display: flex;
    justify-content:space-around;
}
.footer_text{
    cursor: pointer;
    font-family: 'ComicSansCustom';
    color: rgb(181, 171, 154);
    font-size: 15px;
    font-weight: bolder;
    text-decoration: none;
}
.footer_text.contact{
    color: rgb(248, 245, 241);
    background-color: rgb(180, 175, 167);
}
.footer.contact{
    background-color: rgb(180, 175, 167);
}
/* ALL ABOUT menu FROM TOP TO BUTTOM */
.menu-botton{
    translate: 16px 8px;
    z-index: 2;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    position:fixed;
    background-color: rgb(255, 255, 255);
}
.menu_button_text{
    cursor: pointer;
    margin: 10px;
    z-index: 2;
    font-weight: 900;
    font-size: 20px;
    font-family: 'ComicSansCustom';
    color: rgb(149, 141, 129);
}
.menu{
    translate: 0 -20px;
    height: calc(100% + 20px);
    overflow: hidden;
    width: 180px;
    z-index: 1;
    background-color: rgb(255, 255, 255);
    display: block;
    position: fixed;
    transition: 0.8s;

}
.menu_show{
    width: 0px;
    transition: 0.8s;
}
.menu_item{
    margin-left: 26px;
}
.menu_item.gallery{
    margin-top: 100px;
}
/* ALL ABOUT start FROM TOP TO BUTTOM*/
.header{ 
    justify-content: center;
    display: flex;
    max-width: 100%; 
    max-height: calc(100vh - 20px);;
    min-height: calc(100vh - 20px);
    overflow: hidden;
    margin: 10px;
    border-radius: 10px; 
}
@keyframes zoom-in {
    0% {transform:scale(1) translateX(0);     
    }
    100% {transform:scale(1.15) translateX(-5vw);
    }
} 
@keyframes opacity {
    from{opacity: 0;}
    to{opacity: 1;}
}

.backround{
    object-fit: cover;
    min-width: 100%;
    max-width: 100%;
    animation: zoom-in 12s ease-in-out;
    animation-fill-mode: forwards;

}
.text-container{
    display: flex;
    position: absolute;
    justify-items: center;
    align-items: center;
    top: 15vh;
    flex-direction: column;
    max-width: 90%;
}

.svg_test{ 
    animation: opacity 8s;
    fill: url(#linearGradient11);
    height: auto;
    
}
.line-1{
    opacity: 0;
    width: 100%;
    display: flex;
    font-family: 'ComicSansCustom';
    margin-top: 20px;
    font-size: 30px;
    color: rgb(255, 255, 255);
    font-weight: 900;
    font-style: italic;
    white-space: nowrap;
    overflow: hidden;
    justify-content: center;
    animation: opacity 4s linear 4s forwards;
    
}


.svg_test.mobile{
    visibility: collapse;
}
@media only screen and (max-width: 600px) {
    .svg_test.mobile{
        visibility: visible;
        max-width: 100%;
    }
    .svg_test{
        visibility: collapse;
    }
    .line-1{
        font-size: 15px;
        text-align: center;
        white-space: wrap;
    }
    .backround{
        object-position: 30% 0;      
    }
}

/* ALL ABOUT gallery FROM TOP TO BUTTOM*/
.svg-style{
    fill: rgb(149, 141, 129);
}
.gallery_grid{
    margin: 8px;
    display: grid;
    grid-template-columns:1fr 1fr 1fr; 
    gap: 8px;
}
@media only screen and (max-width: 768px) {
    .gallery_grid{
        grid-template-columns:1fr;
    }
}
.cell {
    display: flex;
    overflow: hidden;
    border-radius: 8px;
}
.cell a{
    display: contents;
}
.cell img{
    object-fit: cover;
    min-height: 100%;
    min-width: 100%;
    max-height: 400px;
    align-self: center;
    transition: transform 2s;
}
.cell img:hover{ 
    transform: scale(1.1);
}

/* ALL ABOUT img_info SUBPAGE FROM TOP TO BUTTOM*/
/* the grid */
.grid_body{
    align-content: start;
    min-width: auto;
    max-width: 80%;
    display: grid;  
    grid-template-columns: auto auto;
    grid-template-rows:max-content;
}
@media only screen and (max-width: 768px) {
    .grid_body{  
        grid-template-columns: auto;
        max-width: 90%;
        /* max-width: calc(100% - 16px) */
    }
}
/* the top bar and buttons "GALERIE" "INFO" (item 1/2)*/
.info_back_to_gallery{
    display:flex;
    justify-content:flex-start;
    gap: 30px;
    margin-top: 15px;
    margin-bottom: 10px;
}
.gallery{
    cursor: pointer;
    
}
.info{
    cursor: pointer;
}
@media only screen and (max-width: 768px) {
    .info{ 
        visibility: hidden; 
    }
}
/* the big image (item 3)*/
.img_full{
    display: grid;
    grid-template-rows: auto;
    height:auto;
    justify-content:center;
}

.img_full>img{   
    max-width: 100%;
    min-width: 100%;
}

.fullscreen{
    background-color: rgb(48, 48, 48);
    position: absolute;
    display: none;
    min-width: 100%;
    max-width: 100%;
    min-height: 100vh;
    
    
}
.fullscreen>img{
    align-self: center;
    min-width:100%;
    max-width: 100%;
    border-radius: 0;   
}
.fullscreen_show{
    display: flex;
}

.screen_hide{
    display: none;
}
/* the small tumbnails (item 4) */
.img_nav{
    gap: 10px;
    margin-left: 10px;
    height: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;    
}
@media only screen and (max-width: 768px) {
    .img_nav{
        gap: 5px;
        overflow-x: scroll;
        height: auto;  
        flex-direction: row;
        margin-left: 0;
        margin-top: 10px;
        
    }
}
.img_nav>img{
    object-fit: cover;
    max-width: 150px;
    min-width: 150px;
    max-height: 150px;
    min-height: 150px;
}
@media only screen and (max-width: 768px) {
    .img_nav>img{
        max-width: 100px;
        min-width: 100px;
        max-height: 100px;
        min-height: 100px;
        
    }
}
/* the info text (item 5) */
.img_info{
    width: 100%;
    justify-self: center;
    margin-bottom: 60px;
    margin-top: 20px;
    height: auto;
    visibility: visible;
    display: flex;
    flex-direction: column;
    overflow: hidden; 
}

.text_frame{
    margin-top: 20px;
    
}

.attribute_frame_open_button{
    cursor: pointer;
    font-size: 250%;
    line-height: 50%;
    margin-bottom: 10px;
    
}
.attribute_frame{
    overflow: hidden;
    height: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.5s;
    margin-bottom: 10px;
}
.open_attribute_frame{
    height: 100%;
    transition: 0.8s;
}
.close_info{
    cursor: pointer;
    display: block;
    visibility: visible;
    position: absolute;
    align-self: flex-end;
    font-size: 200%;
    line-height: 100%;
}
@media only screen and (max-width: 768px) {
    .close_info{ 
        visibility: hidden; 
    }
}

/* ALL ABOUT datenschutz / impressum SUBPAGE FROM TOP TO BUTTOM*/
.wrapper {
    margin-top: 60px;
    margin-bottom: 60px;
    flex-direction: column;
    display: flex;
    width: 60%;
}
p{
    font-size: large;
    margin-top: 10px;
    color: rgb(0, 0, 0);
    background-color: rgba(255, 255, 255, 0);
}
h3{
    font-size: larger;
    margin-top: 10px;
    color: rgb(0, 0, 0);
    background-color: rgba(255, 255, 255, 0);
}
h2{
    font-size: 22px;
    margin-top: 10px;
    color: rgb(0, 0, 0);
    background-color: rgba(255, 255, 255, 0);
}
h1{
    font-size: 25px;
    margin-top: 10px;
    color: rgb(0, 0, 0);
    background-color: rgba(255, 255, 255, 0);
}
/* ALL ABOUT contact SUBPAGE FROM TOP TO BUTTOM*/
.wrapper-kontakt{
    background-color: rgb(180, 175, 167);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
form{
    background-color: rgb(180, 175, 167);
    max-width: 30%;
    min-width: 250px;
    border-radius: 8px;
    padding: 30px;
}
label{
    background-color: rgba(218, 218, 218, 0);
    font-family: 'ComicSansCustom';
    font-size: large;
    font-weight: bold;
    color: aliceblue;
}
input[type=text],input[type=email]{
    font-size: large;
    text-indent: 10px;
    margin-top: 5px;
    color:rgb(0, 0, 0);
    border: 1px solid white;
    margin-bottom: 20px;
    box-sizing: border-box;
    border-radius: 8px;
    width: 100%;
    height: 30px;
    background-color: white;
}
textarea{
    border: 1px solid white;
    font-size: 20px;
    padding: 10px;
    color:rgb(0, 0, 0);
    margin-top: 5px;
    margin-bottom: 20px;
    border-radius: 8px;
    width: 100%;
    height: 150px;
    box-sizing: border-box;
    resize: none;
    background-color: white;
    
}
input:focus,textarea:focus{
    outline-offset: 3px;
    outline: solid 2px rgb(255, 255, 255);
    box-shadow: none;
}
input[type=submit]{
    background-color: rgb(156, 152, 144);
    font-family: 'ComicSansCustom';
    font-size: large;
    color: rgb(255, 255, 255);
    border: 2px solid rgb(255, 255, 255);
    margin-left: 25%;
    box-sizing: border-box;
    border-radius: 8px;
    width: 50%;
    display: inline-block;
    margin-bottom: 30px;
    height: 40px;
}
.t{
    border-radius: 0px 8px 8px 8px;
    justify-content: center;
    background-color: white;
    display: flex;
    width: 100%;
}
.response_mail_send{
    background-color: rgba(218, 218, 218, 0);
    font-family: 'ComicSansCustom';
    font-size: large;
    font-weight: bold;
    color: aliceblue;
}