File size: 1,045 Bytes
ffeb8d4
 
 
e7fb8c0
ffeb8d4
 
 
 
 
e7fb8c0
 
ffeb8d4
 
 
e7fb8c0
 
ffeb8d4
 
 
e7fb8c0
 
ffeb8d4
 
 
e7fb8c0
 
ffeb8d4
 
 
e7fb8c0
ffeb8d4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* Shared styles across all pages */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

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

.font-space {
    font-family: 'Space Grotesk', sans-serif;
}

/* Custom gradients */
.bg-gradient-hero {
    background: linear-gradient(135deg, #10b981 0%, #f59e0b 100%);
}

/* Responsive textarea */
#prompt {
    min-height: 150px;
}

/* Animation for interactive elements */
.hover\:scale-105 {
    transition: transform 0.2s ease-in-out;
}

/* Custom shadow depths */
.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Focus states */
.focus\:ring-4:focus {
    outline: none;
}

/* Responsive design adjustments */
@media (max-width: 768px) {
    .text-5xl {
        font-size: 2.5rem;
    }
    
    .text-7xl {
        font-size: 3rem;
    }
    
    .text-4xl {
        font-size: 2rem;
    }
    
    .text-2xl {
        font-size: 1.5rem;
    }
}