.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.quote-block {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quote {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
    color: #c28939;
    line-height: 1.6;
}

.quote::before {
    content: open-quote;
}

.quote::after {
    content: close-quote;
}

.author {
    align-self: flex-end;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 500;
    color: #c28939;
}

.author::before {
    content: "— ";
}

.refresh-btn {
    margin-top: auto;
    background-image: url('/img/refresh.svg');
    width: 50px;
    height: 50px;
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
}

.refresh-btn.rotating {
    animation: rotation 0.5s ease-in-out;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
