html, body, .ql-editor { 
    height: 100%; 
    margin: 0; 
    padding: 0; 
    background-color: #f4f4f4; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important; 
}

body { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.main-container { 
    width: 90%; 
    max-width: 800px; 
    background-color: #ffffff; 
    margin: 40px auto; 
    padding: 40px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    border-radius: 8px; 
}

.feed-container {
    margin-top: 0; 
    background: transparent; 
    box-shadow: none; 
    padding: 0;
}

h1 { 
    text-align: center; 
    font-size: 32px; 
    color: #2c3e50; 
    margin-bottom: 30px; 
    border-bottom: 2px solid #e74c3c; 
    padding-bottom: 10px; 
}

.text-inhalt { 
    font-size: 20px; 
    line-height: 1.6; 
    color: #333; 
    white-space: pre-line; 
    margin-bottom: 40px; 
    text-align: center; 
}

.image-gallery { 
    display: flex; 
    flex-direction: row; 
    gap: 20px; 
    justify-content: center; 
    align-items: center; 
}

.image-gallery img { 
    width: calc(50% - 10px); 
    max-width: 400px; 
    height: auto; 
    border-radius: 5px; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.2); 
    transition: transform 0.3s ease; 
}

.image-gallery img:hover { 
    transform: scale(1.02); 
}

@media (max-width: 600px) {
    .image-gallery { 
        flex-direction: column; 
    }
    .image-gallery img { 
        width: 100%; 
    }
    .text-inhalt { 
        font-size: 18px; 
    }
    .main-container { 
        padding: 20px; 
    }
}