/* Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background-color: #d6dde4; /* Heller grauer Hintergrund */
    color: #2c333f; /* Dunklerer Text */
}

/* Optional: Kleine Animation für Knöpfe */
@keyframes bounce-once {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px); /* Move up slightly */
    }
}
.animate-bounce-once:hover {
    animation: bounce-once 0.3s ease-in-out;
}
