/* Custom tweaks on top of Tailwind */

body {
    font-family: 'Segoe UI', sans-serif;
}

a {
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
}

.hero-image {
    max-width: 100%;
    height: auto;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease forwards;
}