.main-container {
    width: 80%;
    max-width: 1250px;
    margin: auto;
}

.title {
    margin-bottom: 15px;
}

.main-container ul {
    margin-left: 20px;
}

.useful-container {
    margin: 50px 0;
}



/* Text neben Bild */

.image-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
}

.image-container .description {
    align-self: center;
}

.image-container img {
    width: 50%;
    max-width: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.25);
}

@media only screen and (max-width: 800px) {
    .image-container {
        flex-direction: column;
        align-items: center;
    }

    .image-container img {
        width: 100%;
    }
}



/* Zitate */

.quote {
    color: #BB355B;
    font-weight: 500;
}

.quote-author {
    color: #757575;
}

