
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #f7f7f7;
}

h1 {
    color: #ffffff;
}

/* Custom styles for animations or specific elements if needed, though Tailwind should suffice */
.gradient-button {
    background-image: linear-gradient(to right, #6366f1, #8b5cf6);
    transition: all 0.3s ease;
}
.gradient-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.4);
}

