body {
    margin: 5% 5% 0;
}

.title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 5%;
}

.text {
    font-size: 1.25rem;
    text-align: left;
    margin-bottom: 2%;
}

.gallery {
    display: flex;
    flex-direction: column;
}

.album {
    display: flex;
    align-items: center;
    margin-bottom: 2%;
    transition: box-shadow 0.3s ease;
}

.album img {
    position: relative;
    width: 25rem;
    height: 16rem;
    object-fit: cover;
    margin-right: 5%;
    opacity: 0.9;
}

.album .album-details {
    display: flex;
    flex-direction: column;
}

/* CSS-Regeln für das helle Design */

@media (prefers-color-scheme: light) {
    body {
        background-color: #EEEEEE;
        color: #363636;
        font-family: 'Roboto Mono', monospace;
    }

    .title, .text, .date {
        font-family: 'Roboto Mono', monospace;
        color: #363636;
        margin-top: 5%;
        font-weight: lighter;
    }

    .date {
        font-size: 0.875rem;
        color: #666666;
    }

    .album {
        background-color: #FAFAFA;
    }

    .album:hover {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        cursor: pointer;
    }
}

/* CSS-Regeln für das dunkle Design */

@media (prefers-color-scheme: dark) {
    body {
        background-color: #282828;
        color: #969696;
        font-family: 'Roboto Mono', monospace;
    }

    .title, .text, .date {
        font-family: 'Roboto Mono', monospace;
        color: #EEEEEE;
        margin-top: 5%;
        font-weight: lighter;
    }

    .date {
        font-size: 0.875rem;
        color: #BBBBBB;
    }

    .album {
        display: flex;
        align-items: center;
        background-color: #363636;
        margin-bottom: 2%;
        width: 100%;
        transition: background-color 0.4s ease 0.05s;
    }

    .album:hover {
        background-color: #303030;
        cursor: pointer;
    }
}

/* Media Queries für responsive Anpassungen */

@media only screen and (max-width: 1100px) {
    .album {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 5%;
        transition: box-shadow 0.3s ease;
    }

    .album img {
        position: relative;
        width: 100%;
        height: auto;
        object-fit: cover;
        margin-bottom: 5%;
        opacity: 0.9;
        margin-right: 0;
    }

    .album .album-details {
        display: flex;
        flex-direction: column;
        margin-bottom: 5%;
    }

    .title {
        font-size: 3rem;
    }

    .text, .date {
        font-size: 1.5rem;
    }
}