body {
    min-width: 600px;        
    overflow-x: auto; 
    background-color: rgb(36,41,45);
    font-family:  "Georgia", serif;
    text-align: center;
    margin: 0;
    padding: 0;

}


.navigation{
    display: flex;
    gap: 10px; 
    margin-right: auto; 
    width: fit-content;        
}

.butten-navigation{
    margin-top: 0px;
    margin-left: 0px;
    background: none;
    font-weight: 800;
    border: none;
    font-size:larger;
    left: 70px;
    width: 150px;
    padding-bottom: 3px;
    color: rgb(144, 150, 150);            
}

.butten-navigation:hover {
    color: rgb(69, 82, 82);
}

.gallery {
    max-width: 800px;
    min-width: 700px;
    margin: auto;
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 10px;
    margin-top: 40px;
    padding-top: 90px;
}
.gallery-space {
    padding-top: 60px;
}
.gallery-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: -80px;
    max-width: 700px;
    position: relative;
    font-size: 17px;
}
.gallery-item img {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 20px 20px 25px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.item-box img {
    min-width: 290px;
    min-height: 450px;
}
.gallery-item:nth-child(odd) img {
    transform: translateX(-50px);
}
.gallery-item:nth-child(even) img {
    transform: translateX(50px);
}
.gallery-item.show img {
    opacity: 1;
    transform: translateX(0);
}
.gallery-item.fade-out img {
    opacity: 0;
    filter: blur(4px);
    transform: translateX(-50px);
}
.gallery-item .text-box {
    max-width: 300px;
    padding: 20px;
    background: linear-gradient(45deg,  #d7d7d7, #fff8f8);
    border-radius: 8px;
    box-shadow: 8px 8px 50px rgba(0, 0, 0, 0.6);
    opacity: 0;
    filter: blur(4px);
    transition: opacity .5s ease-in-out, filter .3s ease-in-out;
}
.gallery-item.show .text-box {
    opacity: 1;
    filter: blur(0);
}
