@import url('./inter.css');

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

.hero-gradient {
    background: linear-gradient(to right, rgba(17, 24, 39, 0.95), rgba(20, 83, 45, 0.4));
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.nav-scrolled {
    background-color: white;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* 26.25rem */
.till-seeder-wrap,
.grass-cleaner-wrap {
    height: fit-content !important;
}

.till-seeder,
.grass-cleaner {
    aspect-ratio: 1.5/1;
    object-fit: cover;
    object-position: center;
}

.icp_link {
    cursor: pointer;
    text-decoration: underline;
}