* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fefce8;
    padding: 1rem;
}

.container {
    max-width: 700px;
    width: 100%;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.quote-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: #fbbf24;
}

.quote-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.quote-author {
    font-size: 1.25rem;
    color: #b45309;
}

.new-quote-btn {
    background-color: #fbbf24;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.new-quote-btn:hover {
    background-color: #f59e0b;
}

.new-quote-btn i {
    transition: transform 0.5s ease;
}

.rotate {
    transform: rotate(360deg);
}

@media (max-width: 640px) {
    .quote-text {
        font-size: 1.25rem;
    }
    .quote-author {
        font-size: 1rem;
    }
}