.container {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
}

.left-column {
    flex: 1;
    padding: 20px;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: right;
}

.left-column h1 {
    font-size: 5vw;
    margin-bottom: 10px;
}

.left-column h2 {
    font-size: 2vw;
    /* margin-bottom: 10px; */
}

.left-column p {
    font-size: 1vw;
    /* line-height: 1.6; */
}

.center-column {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #282828;
}

.center-column img {
    max-width: 80%;
    height: auto;
    border: 2px solid white;
    box-shadow: 0 0 30px 3px white;

}

.right-column {
    flex: 1;
    padding: 20px;
    background-color: #1a1a1a;
    overflow-y: auto;
}

.album-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.album-item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
}

.album-info {
    display: flex;
    flex-direction: column;
}

.album-info h2 {
    /* font-size: 2vw; */
    margin: 0;
}

.album-info p {
    font-size: 0.5vw;
    margin: 0;
}

.right-column {
    flex: 1;
    background-color: #1a1a1a;
    overflow-y: auto;
    padding: 20px;
}

.album-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.album-item {
    display: flex;
    align-items: center;
    padding: 15px;
    /* background-color: #282828; */
    border-radius: 5px;

}

.album-text {
    flex: 2;
    padding-right: 20px;
}

.album-text h2 {
    font-size: 1.2vw;
    margin: 0;
}

.album-text p {
    font-size: 1vw;
    margin: 0;
}

.album-image {
    flex: 1;
    object-fit: cover;
}

.center-column {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #282828;
    position: relative;
}

.image-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.center-text {
    position: absolute;
    bottom: 100px;  
    color: white;
    font-size: 4vw; 
    text-align: center;
    z-index: 1; 
}

.center-column img {
    max-width: 80%;
    height: auto;
    border: 2px solid white;
}


/* Tablet - Breite größer als Höhe */
@media (max-width: 1200px) {
    .right-column {
        display: none;
        /* flex-direction: column;
        order: 3; */
    }

    .left-column {
        flex: 0.5;
        padding: 20px;
        background-color: #1a1a1a;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: right;
    }
}

/* Mittelgroße Smartphones (max. Breite bis 768px) */  
/* Höhe größer als Breite */
@media screen and (max-width: 1000px) {
    .container{
        flex-direction: column;
    }
    .left-column{
        flex: 0.1;
        padding: 0;
    }
    .left-column div h1 br{
        display: none;
    }
    .left-column div h2{
        display: none;
    }
    .left-column div h1{
        font-size: 4vw;;
    }
    .left-column h1{
        /* font-size: 2vw; */
        text-align: center;
    }
    .left-column h2{
        /* font-size: 2vw; */
        text-align: center;
    }

    .album-text{
        display: none;
    }
    .center-column{
        flex: auto;
        align-items:center;
        padding: 2vh;
    }

    .right-column{
        display: flex;
        flex: 2;
    }
    .album-list{
        flex-direction: row;
    }

    .album-list{
        justify-content: center;
        flex-wrap: nowrap;
        display: flex;
        flex-direction: row; /* Elemente nebeneinander anordnen */
        overflow-x: auto; /* Horizontal scrollen aktivieren */
        white-space: nowrap; /* Verhindert Umbruch auf neue Zeile */
        width: 100vw; /* Volle Bildschirmbreite */
    }
}
