/* Grunddesign */
body {
    background-color: #042421;
    color: #e7fffd;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

h1 { color: #e7fffd; }

/* Container für 2 Spalten angepasst */
.quote-container {
    width: 100%;
    max-width: 1000px; /* Mehr Platz für zwei Spalten */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* Automatische 2 Spalten */
    gap: 20px;
}

/* Das Kästchen kleiner und kompakter */
.quote-box {
    background-color: #001f1f;
    border: 2px solid #004d4d;
    border-radius: 15px;
    padding: 15px; /* Etwas weniger Padding */
    box-shadow: 6px 8px 0px rgba(0, 0, 0, 0.5); 
    transition: transform 0.2s, box-shadow 0.2s;
}

.quote-box:hover {
    transform: translateY(-5px);
    box-shadow: 8px 10px 10px rgba(0, 0, 0, 0.7);
}

.quote-text {
    font-size: 1rem; /* Schrift etwas kleiner */
    font-style: italic;
    margin-bottom: 10px;
}

.filter-box {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-btn {
    background-color: #004d4d;
    color: #e7fffd;
    padding: 8px 16px;
    border: 1px solid #40E0D0;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.filter-btn:hover {
    background-color: #40E0D0;
    color: #003333;
}