.quote-container {
    font-family: "Roboto Slab", serif;
    position: absolute;
    bottom: 10px;
    min-width: 90%;
    font-size: 1.5em;
    color: #eee;
    font-weight: 300;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 
    overflow: hidden;
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 2px 2px 2px rgba(223, 3, 3, 0.2);
    display: flex;
    align-items: end;
    padding: 15px
}
.quote {
    opacity: 0;
    position: absolute;
    transition: opacity 1s ease-in-out;
    font-size: 0.65em;
    line-height: 1.2;
}
.quote::after {
    content: " - Stanisław Staszic"; /* Cudzysłów zamykający i autor */
    display: block; /* Sprawia, że autor pojawi się w nowym wierszu */
    margin-top: 5px; /* Odstęp od cytatu */
    text-align: right; /* Wyrównanie autora do prawej */
    font-size: 0.8em; /* Mniejszy rozmiar czcionki dla autora */
    font-weight: bold; /* Wyróżnienie autora */
}
.quote.visible {
    opacity: 1;
}