File size: 1,219 Bytes
a0eb9e2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31bff4c
a0eb9e2
 
 
31bff4c
 
a0eb9e2
 
 
 
31bff4c
 
a0eb9e2
 
 
31bff4c
 
a0eb9e2
 
 
 
31bff4c
 
a0eb9e2
 
31bff4c
a0eb9e2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #ef4444; /* red-500 */
  --secondary-color: #d946ef; /* fuchsia-500 */
  --dark-bg: #111827;
  --card-bg: #1f2937;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--dark-bg);
  color: white;
  overflow-x: hidden;
}

/* Button animations */
button {
  transform: translateY(0);
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Card hover effects */
.bg-gray-800 {
  transform: translateY(0);
  transition: all 0.3s ease;
}

.bg-gray-800:hover {
  transform: translateY(-10px);
}

/* Gradient animation */
.bg-gradient-to-r {
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .grid {
    gap: 1.5rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  .text-3xl {
    font-size: 1.875rem;
  }
}