File size: 694 Bytes
866d702
db1061c
866d702
db1061c
 
866d702
 
db1061c
 
866d702
 
 
db1061c
 
866d702
 
 
 
 
 
 
 
db1061c
866d702
 
79356b0
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* Custom styles that can't be easily done with Tailwind */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

code {
    font-family: 'Fira Code', 'Courier New', Courier, monospace;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
.animate-pulse-custom {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.model-card {
    transition: transform 0.2s ease-in-out;
}

.model-card:hover {
    transform: translateY(-2px);
}